Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Denable_if.cpp272 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()
[all …]