Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:base

9         struct base
29 struct sub : B::base
50 a.base::x();
52 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
55 a.A::B::base::x();
71 a->base::x();
73 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
76 a->A::B::base::x();
88 i.foo(); // expected-error{{member reference base type 'int' is not a structure or union}}
94 typedef A::member base;
98 a->base::x();
100 // expected-error@-2 {{lookup of 'base' in member access expression is ambiguous}}
107 typedef A::B::base base;
108 a->base::x();
119 a.A::B::base::x();
133 a.base::x();
135 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}