aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error52.C
blob: d1c6e4a857d366236b0491a8176b4da5728e61a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/12288

class X {};

struct S {
  explicit S (const X::T&) {}  // { dg-error "does not name a type" }
};

class Y {};

typedef Y::T xt;               // { dg-error "does not name a type" }