summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bob/nested1.C
blob: b5b7a762e0fc85cc2ebf6b17486ea41110aa06bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link: 
  class A {
    class B {
      typedef long T;
      int i;
    };
  };
  class C {
    class B {
      typedef float T;
      int i;
    };
  };

C::B::T a;