blob: 687a819a392d7505432d0df7b74c950d1fa7cd25 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <functional>
// pointer_to_unary_function
// UNSUPPORTED: c++98, c++03, c++11, c++14
#include <functional>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
double unary_f(int i) {return 0.5 - i;}
int main()
{
typedef std::pointer_to_unary_function<int, double> F;
}