Lines Matching defs:Base
4 x.Base::f0();
7 struct Base {
11 struct X0 : Base {
12 typedef Base CrazyBase;
26 call_f0_through_typedef<Base>(x0);
38 struct X1 : Base, OtherBase {
43 call_f0_through_typedef2<Base>(x0);
45 call_f0_through_typedef2<Base>(x1); // expected-note{{instantiation}}
114 struct Base {
118 template <class T> struct Foo : Base {
140 template <class T> class Base;
141 template <class T> class Derived : public Base<T> {