YouCompleteMe/cpp/llvm/tools/clang/test/SemaCXX/access-control-check.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

16 lines
300 B
C++

// RUN: %clang_cc1 -fsyntax-only -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 {{private member of 'P'}}
};