summaryrefslogtreecommitdiff
path: root/test/CXX/class/class.local/p2.cpp
blob: a1fed53b3c09aa87e32a72cf08076ca78f437e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -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 *'}}
}