aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tc1/dr108.C
blob: 6b567a9fad551cb55a245c726559b52ba3f1c29a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR108: Are classes nested in templates dependent?

template <class T> struct S {
  struct I1 {
    typedef int X;
  };
  struct I2 : public I1 {
    X x;    // { dg-error "does not name a type" }
  };
};

// Additional notes on the same line are allowed
// { dg-error "" "additional" { target *-*-* } 10 }