aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/error33.C
blob: 48fca70d42d51f9ba2eebfb58011dbcfa43d36f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin: PR c++/42218
// { dg-do compile }

template<int> struct A
{
      template<int> struct B;
};

int i = A<0>::B<0>::X::Y; // { dg-error "'A<0>::B<0>::X' has not been declared" }