blob: 0c038561d666480b18f83140b89b999cbd76300e [file] [log] [blame]
// Build don't link:
struct C
{
struct D
{
};
};
struct E
{
C& c;
void g();
};
void E::g()
{
c.D().f(); // ERROR - no matching function
}