Searched refs:IntFooTy (Results 1 – 1 of 1) sorted by relevance
272 using IntFooTy = void (*)(int *); in testIt() typedef273 auto C = reinterpret_cast<IntFooTy>(foo); in testIt()274 auto CAmp = reinterpret_cast<IntFooTy>(&foo); in testIt()289 using IntFooTy = void (*)(int *); in testItCStyle() typedef290 auto C = (IntFooTy)foo; in testItCStyle()291 auto CAmp = (IntFooTy)&foo; in testItCStyle()306 using IntFooTy = void (*)(int *); in testIt() typedef307 …auto A = reinterpret_cast<IntFooTy>(foo); // expected-error{{reinterpret_cast cannot resolve overl… in testIt()308 …auto ARef = reinterpret_cast<IntFooTy>(&foo); // expected-error{{reinterpret_cast cannot resolve o… in testIt()309 auto AExplicit = reinterpret_cast<IntFooTy>(foo<int*>); in testIt()[all …]