(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
diagnostic/
pr13981.C
// PR c++/13981

struct A {};
struct B;  // { dg-message "is incomplete" }

void func( A *a );

int main()
{
  B *b = 0;
  func(b);  // { dg-error "cannot convert" }
}