blob: d56d67f7556663608685eee0a6a6f4deabda7264 [file] [log] [blame]
//PR c++/28740
struct A { virtual ~A(); };
struct B : A A {}; // { dg-error "" }
A foo(const B &b) // { dg-error "" }
{
return b;
}