cp/
[official-gcc.git] / gcc / testsuite / g++.dg / template / meminit1.C
blob077bf60cb80e43a2ff034683be12f0f683057474
1 // { dg-options "-std=gnu++98" }
2 template <class T >
3 struct S
5   S() : S() {} // { dg-error "base" }
6 };
8 S<int> s; // { dg-error "instantiated" }