blob: 03fcd3613368c3b3788c71a29ea6ea70c825bcc0 [file] [log] [blame]
// PR c++/37554
struct A {};
class B : A {};
void foo(B b)
{
(A)b; // { dg-error "inaccessible base" }
}