summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/function/test/function_test_fail2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/function/test/function_test_fail2.cpp')
-rw-r--r--src/boost/libs/function/test/function_test_fail2.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/boost/libs/function/test/function_test_fail2.cpp b/src/boost/libs/function/test/function_test_fail2.cpp
new file mode 100644
index 00000000..d113e457
--- /dev/null
+++ b/src/boost/libs/function/test/function_test_fail2.cpp
@@ -0,0 +1,18 @@
+// Boost.Function library
+
+// Copyright (C) Douglas Gregor 2001-2005. 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)
+
+// For more information, see http://www.boost.org
+
+#include <boost/function.hpp>
+
+static int bad_fn(float f) { return static_cast<int>(f); }
+
+void test()
+{
+ boost::function0<int> f1;
+ f1 = bad_fn;
+}