Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Denable_if.cpp268 using VoidFooTy = void (*)(void *); in testIt() typedef
269 auto B = reinterpret_cast<VoidFooTy>(foo); in testIt()
270 auto BAmp = reinterpret_cast<VoidFooTy>(&foo); in testIt()
285 using VoidFooTy = void (*)(void *); in testItCStyle() typedef
286 auto B = (VoidFooTy)foo; in testItCStyle()
287 auto BAmp = (VoidFooTy)&foo; in testItCStyle()