summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/crash51.C
blob: 03fcd3613368c3b3788c71a29ea6ea70c825bcc0 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/37554

struct A {};
class B : A {};

void foo(B b)
{
  (A)b; // { dg-error "inaccessible base" }
}