aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.gb/scope02.C
blob: 678b73e225108f2048ccb83a95b39f864866feb9 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link: 
// GROUPS passed gb scope
struct c {
  typedef int t;
  struct d {
    void foo (t &);
  };
};

void c::d::foo (t & x) { }