aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup8.C
blob: f81572ab2601987bb0e539da54281dc7c6384516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:

struct S {
  int A;
  struct A {
    enum { a = 0 };
  };

  void f();
};

void S::f() {
  A = A::a;
}