Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:hm

74   HasMembers hm;
78 int *pmii = &hm.i;
82 &hm.f; // expected-error {{cannot create a non-constant pointer to member function}}
94 HasMembers hm, *phm = &hm;
97 hm.*pi = 0;
99 (void)&(hm.*pi);
101 (void)&((&hm)->*pi);
104 (hm.*pf)();
107 (void)(hm->*pi); // expected-error {{left hand operand to ->* must be a pointer to class compatible with the right hand operand, but is 'HasMembers'}}
121 (void)(hm.*i); // expected-error {{pointer-to-member}}