Lines Matching full:base
11 typedef A<X> Base;
12 B1() : Base() {}
24 TmplB<int>() { } // expected-error {{type 'TmplB<int>' is not a direct or virtual base of 'TmplC'}}
30 Tmpl<int>(), // expected-error {{type 'Tmpl<int>' is not a direct or virtual base of 'TmplD'}}
35 class Base {
37 Base() {}
43 Derived() : Base() {}
46 class Final : public Derived<Base> {
58 struct Base { Base(int); }; // expected-note 2{{candidate}}
61 struct Derived1 : Base {
62 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}}
66 struct Derived2 : Base {
67 Derived2() : BaseClass(1) {} // expected-error {{does not name a non-static data member or base}}