Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:member

13     struct member
20 member * operator->() { return 0; }
51 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
54 a->member::foo();
55 a->A::member::foo();
72 a->bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
75 (*a)->member::foo();
76 (*a)->A::member::foo();
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}}
108 a->A::member::foo();
110 a.bad::x(); // expected-error{{'bad::x' is not a member of class 'A::sub'}}
122 a->member::foo();
140 int a::sa = a.a; // expected-error {{invalid use of non-static data member 'a'}}