blob: 9e4cea7c951403e00d7f2ff2b2f5cd0587bb36b7 [file] [log] [blame]
// PR ipa/60457
// { dg-do compile }
template <class T>
struct A
{
};
struct B : A <B>
{
B ();
};
B::B ()
{
const int c[] = { 1, 1 };
}