OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash35.C
1 // PR c++/20463
2 // { dg-do compile }
3
4 template <typename T> struct C; // { dg-error "declaration" }
5
6 template <typename T> void C<T>::f() // { dg-error "invalid|template" }
7 {
8   const foo bar;
9 }