Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:structure

230 struct structure { int m; };
251 typedef structure *structurep;
252 structure *p3 = structurep(p2);
297 const int structure::*psi = 0;
298 typedef const float structure::*structurecfmp;
300 typedef int structure::*structureimp;
303 void (structure::*psf)() = 0;
304 typedef int (structure::*structureimfp)();
307 typedef void (structure::*structurevmfp)();
308 (void)structurevmfp(psi); // expected-error-re {{functional-style cast from 'const int structure::*' to 'structurevmfp' (aka 'void (structure::*)(){{( __attribute__\(\(thiscall\)\))?}}') is not allowed}}
309 (void)structureimp(psf); // expected-error-re {{functional-style cast from 'void (structure::*)(){{( __attribute__\(\(thiscall\)\))?}}' to 'structureimp' (aka 'int structure::*') is not allowed}}