Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:sub

23     struct sub : B::base
39 A::sub a;
43 a.sub::x();
48 a.A::sub::x();
51 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
60 A::sub *a;
64 a->sub::x();
69 a->A::sub::x();
72 a->bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
86 A::sub *a;
93 A::sub *a;
106 a.A::sub::x();
110 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
114 fun5<A::sub>(); // expected-note{{instantiation}}
120 a.sub::x();
127 fun6<A::sub>(); // expected-note{{instantiation}}