OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash75.C
1 // PR c++/34776
2
3 template<typename T> struct A
4 {
5   T::X<0> x; // { dg-error "non-template|T::template|base type" }
6 };
7
8 A<int*> a;