aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash81.C
blob: 849470a5e88ef47833bb943931c1202da6b59668 (plain)
1
2
3
4
5
6
7
8
// PR c++/34485

struct A
{
  template<T::X> struct X; // { dg-error "'T' has not been declared" "T" }
  // { dg-error "declaration of 'template<int X> struct A::X'" "A::X" { target *-*-* } 5 }
  // { dg-error "shadows template parm 'int X'" "shadow" { target *-*-* } 5 }
};