summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/1 boost/nomod.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/frameworks/1 boost/nomod.cpp')
-rw-r--r--test cases/frameworks/1 boost/nomod.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/test cases/frameworks/1 boost/nomod.cpp b/test cases/frameworks/1 boost/nomod.cpp
new file mode 100644
index 0000000..55c95b2
--- /dev/null
+++ b/test cases/frameworks/1 boost/nomod.cpp
@@ -0,0 +1,18 @@
+#include<boost/any.hpp>
+#include<iostream>
+
+boost::any get_any() {
+ boost::any foobar = 3;
+ return foobar;
+}
+
+int main(int argc, char **argv) {
+ boost::any result = get_any();
+ if(boost::any_cast<int>(result) == 3) {
+ std::cout << "Everything is fine in the world.\n";
+ return 0;
+ } else {
+ std::cout << "Mathematics stopped working.\n";
+ return 1;
+ }
+}