Home
last modified time | relevance | path

Searched refs:psf (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dcstyle-cast.cpp232 void (structure::*psf)() = 0; in memptrs() local
233 (void)(int (structure::*)())(psf); in memptrs()
236 …(void)(int structure::*)(psf); // expected-error-re {{C-style cast from 'void (structure::*)(){{( … in memptrs()
H A Dreinterpret-cast.cpp109 void (structure::*psf)() = 0; in memptrs() local
110 (void)reinterpret_cast<int (structure::*)()>(psf); in memptrs()
113 …(void)reinterpret_cast<int structure::*>(psf); // expected-error-re {{reinterpret_cast from 'void … in memptrs()
H A Dfunctional-cast.cpp304 void (structure::*psf)() = 0; in memptrs() local
306 (void)structureimfp(psf); in memptrs()
310 …(void)structureimp(psf); // expected-error-re {{functional-style cast from 'void (structure::*)(){… in memptrs()