blob: 3650247cd128a42b1fbd0ad4c2e5e06617937f2d [file] [log] [blame]
// { dg-options "-frepo" }
struct A {
A();
};
A::A() {}
template <typename T>
struct B : public A {
B() {} // { dg-bogus "" }
};
B<int> b;
int main () {}