Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:structure

229 struct structure { int m; };
250 typedef structure *structurep;
251 structure *p3 = structurep(p2);
296 const int structure::*psi = 0;
297 typedef const float structure::*structurecfmp;
299 typedef int structure::*structureimp;
302 void (structure::*psf)() = 0;
303 typedef int (structure::*structureimfp)();
306 typedef void (structure::*structurevmfp)();
307 (void)structurevmfp(psi); // expected-error {{functional-style cast from 'const int structure::*' to 'structurevmfp' (aka 'void (structure::*)()') is not allowed}}
308 (void)structureimp(psf); // expected-error {{functional-style cast from 'void (structure::*)()' to 'structureimp' (aka 'int structure::*') is not allowed}}