repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-cast1.C
blob
5446d85f3aab19a26eebcfc1e4a11d669aa318d3
1
// PR c++/83186
2
// { dg-do compile { target c++11 } }
3
4
struct a {
5
operator unsigned();
6
};
7
template <class> void b() { static_cast<unsigned>(a{}); }
8
9
int main()
10
{
11
b<int>();
12
}