Files
Yuzu-clone/externals/vcpkg/buildtrees/boost-function/src/ost-1.79.0-6f6ddc30fb.clean/test/quick.cpp
T
2022-11-05 15:35:56 +01:00

22 lines
457 B
C++
Executable File

// Copyright 2019 Peter Dimov
// Use, modification and distribution is subject to the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
#include <boost/function.hpp>
#include <boost/core/lightweight_test.hpp>
static int f( int x )
{
return x + 1;
}
int main()
{
boost::function<int(int)> fn( f );
BOOST_TEST_EQ( fn( 5 ), 6 );
return boost::report_errors();
}