1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc struct A { }; 4*f4a2713aSLionel Sambuc f()5*f4a2713aSLionel Sambucvoid f() { 6*f4a2713aSLionel Sambuc struct B : private A {}; // expected-note{{declared private here}} 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc B b; 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc A *a = &b; // expected-error{{cannot cast 'B' to its private base class 'A'}} 11*f4a2713aSLionel Sambuc } 12