blob: f63775bdb492dd8e75aaa2ef49dd11a65e11fe4b [file] [log] [blame]
// Build don't link:
// 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; }