1 // PR c++/48132
2 // { dg-do compile { target c++11 } }
3 
4 struct C
5 {
CC6   constexpr C (int x) : c (x) {}
7   int c;
8 };
9 
10 void
foo()11 foo ()
12 {
13   C a[] = { C (0) };
14 }
15