Lines Matching +defs:d +defs:B
99 class B : A { }; // expected-error {{base class 'test2::A' has private default constructor}} class
108 D d; // expected-note{{implicit default constructor}} variable
171 …Private test1(Derived1 &d) { return d; } // expected-error {{'operator Private' is a private membe… in test1()
173 …Public test2(Derived1 &d) { return d; } // expected-error {{cannot cast 'test4::Derived1' to its p… in test2()
181 …Private test1(Derived2 &d) { return d; } // expected-error {{'operator Private' is a private membe… in test1()
182 Public test2(Derived2 &d) { return d; } in test2()
189 Private test1(Derived3 &d) { return d; } in test1()
190 …Public test2(Derived3 &d) { return d; } // expected-error {{'operator Public' is a private member … in test2()
197 Private test1(Derived4 &d) { return d; } in test1()
198 Public test2(Derived4 &d) { return d; } in test2()
243 class B : A { class
272 class B : private A { // expected-note {{constrained by private inheritance here}} class
287 class B { class
305 class B : public A { class
332 struct B : protected A { struct
338 A *d; in test() local
398 template <class T> class B : public A<T> { class
420 template class B<int>; // expected-note {{in instantiation}} variable
421 template class B<long>; // expected-note 4 {{in instantiation}} variable
442 class B : A<int> { class
483 class B { class
494 struct B : private A { using A::operator bool; }; struct