Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:structure

168 struct structure { int m; };
186 structure *p3 = (structure*)(p2);
222 const int structure::*psi = 0;
223 (void)(const float structure::*)(psi);
224 (void)(int structure::*)(psi); // const_cast appended
226 void (structure::*psf)() = 0;
227 (void)(int (structure::*)())(psf);
229 (void)(void (structure::*)())(psi); // expected-error {{C-style cast from 'const int structure::*' to 'void (structure::*)()' is not allowed}}
230 (void)(int structure::*)(psf); // expected-error {{C-style cast from 'void (structure::*)()' to 'int structure::*' is not allowed}}