summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.1st/bind1st.pass.cpp
blob: 01e4120fc33fa90291dd65c88553ff689a366a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===----------------------------------------------------------------------===//
//
// 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>
// REQUIRES: c++98 || c++03 || c++11 || c++14

// template <class Fn, class T>
//   binder1st<Fn>
//   bind1st(const Fn& fn, const T& x);

#define _LIBCPP_DISABLE_DEPRECATION_WARNINGS

#include <functional>
#include <cassert>

#include "../test_func.h"

int main(int, char**)
{
    assert(std::bind1st(test_func(1), 5)(10.) == -5.);

  return 0;
}
OpenPOWER on IntegriCloud