blob: 08eea8883ddb1ee394302cb261f5bc2f86973211 [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 () {}
// { dg-final { cleanup-repo-files } }