OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / meminit1.C
1 // { dg-options "-std=gnu++98" }
2 template <class T >
3 struct S
4 {
5   S() : S() {} // { dg-error "base" }
6 };
7
8 S<int> s; // { dg-message "instantiated" }