blob: 36d1de4ac11e8ec629c4d97471629bd22e539061 [file] [log] [blame]
// PR c++/46348
// { dg-do compile { target c++11 } }
struct A
{
int arr[1];
constexpr A()
: arr() { }
};