blob: 9aa215c65f6f3126462b235e1c7a8515fe549e4c [file] [log] [blame]
Brian Silvermance4aa8d2018-08-04 23:36:03 -07001//
2// quick.cpp - a quick test for boost/bind.hpp
3//
4// Copyright 2017 Peter Dimov
5//
6// Distributed under the Boost Software License, Version 1.0.
7//
8// See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt
10//
11
12#include <boost/bind.hpp>
13#include <boost/core/lightweight_test.hpp>
14
15int f( int a, int b, int c )
16{
17 return a + 10 * b + 100 * c;
18}
19
20int main()
21{
22 int const i = 1;
23
24 BOOST_TEST_EQ( boost::bind( f, _1, 2, 3 )( i ), 321 );
25
26 return boost::report_errors();
27}