(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
inherit/
crash4.C
// PR c++/59082

struct A {};

struct B : virtual A, A {};  // { dg-error "duplicate base type" }

A foo(const B &b)
{
  return b;
}