1 // PR c++/46348
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
6   int arr[1];
7 
AA8   constexpr A()
9   : arr() { }
10 };
11