blob: 957ad456ffdabee76f9bf9e070268ff514cd32b1 [file] [log] [blame]
// { dg-do assemble }
struct C
{
struct D
{
};
};
struct E
{
C& c;
void g();
};
void E::g()
{
c.D().f(); // { dg-error "" } no matching function
}