diff options
Diffstat (limited to 'src/boost/libs/function/test/quick.cpp')
-rw-r--r-- | src/boost/libs/function/test/quick.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/boost/libs/function/test/quick.cpp b/src/boost/libs/function/test/quick.cpp new file mode 100644 index 000000000..d2d37d061 --- /dev/null +++ b/src/boost/libs/function/test/quick.cpp @@ -0,0 +1,21 @@ +// 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(); +} |