Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:Private

200 private:
239 struct Private {
240 Private();
241 private:
242 Private(const Private&); // expected-note {{declared private here}}
254 Private p; // expected-note {{implicitly deleted}}
257 const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Private' when binding a reference to a temporary would invoke an inaccessible constructor in C++98}}