]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/bind/test/quick.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / bind / test / quick.cpp
1 //
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
15 int f( int a, int b, int c )
16 {
17 return a + 10 * b + 100 * c;
18 }
19
20 int 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 }