blob: fdbf4550dcedd0b1723c5a23c21f26db447ee2e9 [file] [log] [blame]
// Build don't link:
// GROUPS passed niklas explicit-construct virtual-base
struct A {};
struct B : virtual A { B(); };
struct C : B {};
struct D { D(C&); };
D d(C());