repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist93.C
blob
7a0b02191740b61fde7853a8154c8c1891bf514f
1
// PR c++/65554
2
// { dg-do compile { target c++11 } }
3
4
namespace std
5
{
6
template <class> class initializer_list // { dg-error "definition of .*std::initializer_list.* does not match" }
7
{
8
int *_M_array;
9
int _M_len;
10
};
11
}
12
13
// { dg-prune-output "compilation terminated" }