diff options
Diffstat (limited to 'src/boost/libs/hof/test/fail/apply_eval.cpp')
-rw-r--r-- | src/boost/libs/hof/test/fail/apply_eval.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/boost/libs/hof/test/fail/apply_eval.cpp b/src/boost/libs/hof/test/fail/apply_eval.cpp new file mode 100644 index 00000000..c87d7ed9 --- /dev/null +++ b/src/boost/libs/hof/test/fail/apply_eval.cpp @@ -0,0 +1,11 @@ +/*============================================================================= + Copyright (c) 2017 Paul Fultz II + apply_eval.cpp + Distributed under 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/hof/apply_eval.hpp> + +int main() { + (void)boost::hof::apply_eval(boost::hof::always(), 1, 2); +} |