2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / error33.C
blob48fca70d42d51f9ba2eebfb58011dbcfa43d36f2
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin: PR c++/42218
3 // { dg-do compile }
5 template<int> struct A
7       template<int> struct B;
8 };
10 int i = A<0>::B<0>::X::Y; // { dg-error "'A<0>::B<0>::X' has not been declared" }