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
/
auto54.C
blob
0c1815a99bcecfa8a8fd9fd719b7191a668e4d0f
1
// PR c++/97895
2
// { dg-do compile { target c++11 } }
3
4
namespace std {
5
template<typename T> struct initializer_list {
6
const T *ptr;
7
decltype(sizeof 0) n;
8
};
9
auto a = {}; // { dg-error "unable to deduce" }
10
}