1 // PR c++/98295
2 // { dg-do compile { target c++11 } }
3 
4 struct A { constexpr A(); };
5 
f()6 void f() {
7   A b[2][3];
8   [b] { };
9 }
10 
A()11 constexpr A::A() {}
12