blob: 5ea0b0457a140bd21fb3c57b56eadae3cf524576 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fgnu-tm" } */
struct A; // { dg-message "forward declaration of 'struct A'" }
struct B
{
virtual B* foo(A);
};
struct C : virtual B
{
virtual C* foo(A) { return 0; } // { dg-error "'<anonymous>' has incomplete type" }
};
C c;