OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash110.C
1 // PR c++/51402
2
3 template<void> struct A   // { dg-error "not a valid type" }
4 {
5   template<int,int> struct B {};
6   template<int N> struct B<N,N> {};
7 };