Lines Matching defs:IntFooTy
272 using IntFooTy = void (*)(int *);
273 auto C = reinterpret_cast<IntFooTy>(foo);
274 auto CAmp = reinterpret_cast<IntFooTy>(&foo);
289 using IntFooTy = void (*)(int *);
290 auto C = (IntFooTy)foo;
291 auto CAmp = (IntFooTy)&foo;
306 using IntFooTy = void (*)(int *);
307 auto A = reinterpret_cast<IntFooTy>(foo); // expected-error{{reinterpret_cast cannot resolve overloaded function 'foo' to type}}
308 auto ARef = reinterpret_cast<IntFooTy>(&foo); // expected-error{{reinterpret_cast cannot resolve overloaded function 'foo' to type}}
309 auto AExplicit = reinterpret_cast<IntFooTy>(foo<int*>);
319 using IntFooTy = void (*)(int *);
320 constexpr auto A = (IntFooTy)foo;
321 constexpr auto ARef = (IntFooTy)&foo;
322 constexpr auto AExplicit = (IntFooTy)foo<int*>;