summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/concept_check/test/old_concept_function_fail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/concept_check/test/old_concept_function_fail.cpp')
-rw-r--r--src/boost/libs/concept_check/test/old_concept_function_fail.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/boost/libs/concept_check/test/old_concept_function_fail.cpp b/src/boost/libs/concept_check/test/old_concept_function_fail.cpp
new file mode 100644
index 000000000..6b7bf30a3
--- /dev/null
+++ b/src/boost/libs/concept_check/test/old_concept_function_fail.cpp
@@ -0,0 +1,23 @@
+// (C) Copyright Jeremy Siek 2000.
+// 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)
+
+#ifdef NDEBUG
+# undef NDEBUG
+#endif
+
+#include "old_concepts.hpp"
+
+// This file verifies that concepts written the old way still catch
+// errors in function context. This is not expected to work on
+// compilers without SFINAE support.
+
+struct foo { };
+
+int
+main()
+{
+ boost::function_requires< old::EqualityComparableConcept<foo> >();
+ return 0;
+}