]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/template/typedef41.C
/cp
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / template / typedef41.C
1 // PR c++/59347
2
3 template<int> struct A
4 {
5 typedef int ::X; // { dg-error "15:typedef name" }
6 };
7
8 A<0> a;