Lines Matching refs:IntFooTy
272 using IntFooTy = void (*)(int *); in testIt() typedef
273 auto C = reinterpret_cast<IntFooTy>(foo); in testIt()
274 auto CAmp = reinterpret_cast<IntFooTy>(&foo); in testIt()
289 using IntFooTy = void (*)(int *); in testItCStyle() typedef
290 auto C = (IntFooTy)foo; in testItCStyle()
291 auto CAmp = (IntFooTy)&foo; in testItCStyle()
306 using IntFooTy = void (*)(int *); in testIt() typedef
307 …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()
319 using IntFooTy = void (*)(int *); in testItCStyle() typedef
320 constexpr auto A = (IntFooTy)foo; in testItCStyle()
321 constexpr auto ARef = (IntFooTy)&foo; in testItCStyle()
322 constexpr auto AExplicit = (IntFooTy)foo<int*>; in testItCStyle()