]> granicus.if.org Git - clang/commitdiff
Add test for [class.local]p2.
authorAnders Carlsson <andersca@mac.com>
Wed, 24 Jun 2009 02:00:28 +0000 (02:00 +0000)
committerAnders Carlsson <andersca@mac.com>
Wed, 24 Jun 2009 02:00:28 +0000 (02:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74051 91177308-0d34-0410-b5e6-96231b3b80d8

test/CXX/class/class.local/p2.cpp [new file with mode: 0644]

diff --git a/test/CXX/class/class.local/p2.cpp b/test/CXX/class/class.local/p2.cpp
new file mode 100644 (file)
index 0000000..854415f
--- /dev/null
@@ -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 *'}}
+}