PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ice5.C
blob51b328e2598098f6d330e96751674920426ec8fb
1 // PR c++/51621
2 // { dg-do compile { target c++11 } }
4 struct A
6   A() {}
7 };
9 struct B
11   A a[1];
12   constexpr B() : a() {} // { dg-error "non-constant|non-.constexpr." }