OSDN Git Service

PR c++/28606
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / template2.C
1 namespace N {
2   template < typename T > class C : T {};
3 }
4
5 int main() {
6   N::C(); // { dg-error "template" }
7 }