re PR c++/48132 ([C++0x] Internal compiler error on array of std::complex with -std...
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array3.C
1 // PR c++/48132
2 // { dg-options -std=c++0x }
3
4 struct C
5 {
6 constexpr C (int x) : c (x) {}
7 int c;
8 };
9
10 void
11 foo ()
12 {
13 C a[] = { C (0) };
14 }