Lines Matching full:base
13 typedef A<X> Base;
14 B1() : Base() {}
26 TmplB<int>() { } // expected-error {{type 'TmplB<int>' is not a direct or virtual base of 'TmplC'}}
32 Tmpl<int>(), // expected-error {{type 'Tmpl<int>' is not a direct or virtual base of 'TmplD'}}
37 class Base {
39 Base() {}
45 Derived() : Base() {}
48 class Final : public Derived<Base> {
60 struct Base { Base(int); }; // expected-note {{candidate constructor not viable}}
67 struct Derived1 : Base {
68 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}}
72 struct Derived2 : Base {
73 Derived2() : BaseClass(1) {} // expected-error {{does not name a non-static data member or base}}