diff options
author | Anders Carlsson <andersca@mac.com> | 2009-06-24 02:00:28 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-06-24 02:00:28 +0000 |
commit | 9ca97ba45c17926c6f8fd68977470023da78866a (patch) | |
tree | febcce22451d7abdc4f7d72c97c6eeab3da95eb3 | |
parent | e8ab9ea9aea457f275a9a6253bfcd572ad9010a1 (diff) |
Add test for [class.local]p2.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74051 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/class/class.local/p2.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CXX/class/class.local/p2.cpp b/test/CXX/class/class.local/p2.cpp new file mode 100644 index 0000000000..854415fe30 --- /dev/null +++ b/test/CXX/class/class.local/p2.cpp @@ -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 *'}} +} |