OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash98.C
1 // PR c++/43630
2
3 template < typename > struct A; // { dg-error "declaration" }
4
5 template < typename > struct A < int > // { dg-error "not used|template\\-parameter" }
6 {
7   int i;
8   int f ();
9 };
10
11 int A < int >::f () // { dg-error "incomplete type" }
12 {
13   return i;
14 }