blob: 89d59ef2c165ba8d518e20bf509ed9570ed168ea [file] [log] [blame]
// PR c++/42057
struct A; // { dg-message "forward declaration" }
struct B
{
virtual B* foo(A);
};
struct C : virtual B
{
virtual C* foo(A) { return 0; } // { dg-error "incomplete type" }
};
C c;