(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
tm/
pr51928.C
/* { 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;