921e5a0eb4
From-SVN: r14840
16 lines
233 B
C
16 lines
233 B
C
// 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; }
|