rt_gccstream/gcc/testsuite/g++.old-deja/g++.gb/scope04.C

16 lines
234 B
C

// { dg-do assemble }
// GROUPS passed gb scope
struct a {
struct c {
struct d {
static int foo (int);
};
};
struct b {
int foo (int x) { return c::d::foo (x); }
};
};
int a::c::d::foo (int) { return 0; }