Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:base

6         struct base // expected-note{{object type}}
23 struct sub : B::base
44 a.base::x();
46 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
49 a.A::B::base::x();
65 a->base::x();
67 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
70 a->A::B::base::x();
82 i.foo(); // expected-error{{member reference base type 'int' is not a structure or union}}
88 typedef A::member base; // expected-note{{current scope}}
89 a->base::x(); // expected-error{{ambiguous}}
95 typedef A::B::base base;
96 a->base::x();
107 a.A::B::base::x();
121 a.base::x();
123 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}