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

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