blob: d913ae80321f43f63a7dd32b8434ad8a459a2f0a [file] [log] [blame]
// Build don't link:
// GROUPS passed unions
class B;
struct A {
A(B* x) : i(x) {}
A() : i(0) {}
union {
B* i;
B* c;
};
};