Add test for [class.local]p2.

llvm-svn: 74051
This commit is contained in:
Anders Carlsson 2009-06-24 02:00:28 +00:00
parent 5f71a2886a
commit 9e47af8b59
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
// RUN: clang-cc -fsyntax-only -verify %s -faccess-control
struct A { };
void f() {
struct B : private A {}; // expected-note{{'private' inheritance specifier here}}
B b;
A *a = &b; // expected-error{{conversion from 'struct B' to inaccessible base class 'struct A'}} \
expected-error{{incompatible type initializing 'struct B *', expected 'struct A *'}}
}