blob: b7693f1e637fa7853e70710eb565df51000df1b4 [file] [log] [blame]
// PR c++/47774
// { dg-options -std=c++0x }
struct A
{
A() {}
};
template <typename T>
struct array
{
constexpr array() : mem() {}
T mem[7];
};
int main()
{
array<A> ar;
}