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

struct B { 
  int i;
};

struct D: virtual public B {
  int i;
};

struct D2 : public D {
  void f() { i = 3; }
};