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
/
constexpr-61484.C
blob
2232beb105829251496dfeb4318adb312d76a231
1
// PR c++/61484
2
// { dg-do compile { target c++11 } }
3
4
struct S {
5
constexpr S() { }
6
};
7
8
constexpr S s[][1] = {
9
{ S() }
10
};