//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // pointer_to_unary_function // UNSUPPORTED: c++98, c++03, c++11, c++14 #include #include #include #include "test_macros.h" double unary_f(int i) {return 0.5 - i;} int main() { typedef std::pointer_to_unary_function F; }