blob: 6b567a9fad551cb55a245c726559b52ba3f1c29a [file] [log] [blame]
// { 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 }