aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/name-clash7.C
blob: 5c0690aa8505bb4946051fd669d4a4874d0d9511 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/28513

class foo {			// { dg-error "changes meaning" }
public:
  typedef int bar;
};

class baz {
public:
  foo::bar foo;			// { dg-error "declaration" }
};