blob: 0ce3e42d6da33fa3bdc417e09fdaa0f4095e25e8 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <functional>
// pointer_to_unary_function
// UNSUPPORTED: c++98, c++03, c++11, c++14
#define _LIBCPP_DISABLE_DEPRECATION_WARNINGS
#include <functional>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
double unary_f(int i) {return 0.5 - i;}
int main(int, char**)
{
typedef std::pointer_to_unary_function<int, double> F;
return 0;
}