PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-61484.C
blob2232beb105829251496dfeb4318adb312d76a231
1 // PR c++/61484
2 // { dg-do compile { target c++11 } }
4 struct S {
5   constexpr S() { }
6 };
8 constexpr S s[][1] = {
9     { S() }