summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/access-control-check.cpp
blob: cf2d191a294fba86d5d8a2d401eda881e5985ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -fsyntax-only -faccess-control -verify %s

class M {
  int iM;
};

class P {
  int iP; // expected-note {{declared private here}}
  int PPR(); // expected-note {{declared private here}}
};

class N : M,P {
  N() {}
  int PR() { return iP + PPR(); } // expected-error 2 {{access to private member of 'class P'}}
};
OpenPOWER on IntegriCloud