aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.gb/scope02.C
blob: fbcd3a3f00a33078bb03613f0c8087472684d2b8 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }
// GROUPS passed gb scope
struct c {
  typedef int t;
  struct d {
    void foo (t &);
  };
};

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