OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / spec37.C
1 // PR c++/28300
2
3 template<typename> struct A
4 {
5     template<typename T> struct A<T*>; // { dg-error "namespace scope" }
6 };