builds with -fno-exceptions should pass now - relates #12
diff --git a/examples/disabled/test.cpp b/examples/disabled/test.cpp
index 36556d0..9c25bcb 100644
--- a/examples/disabled/test.cpp
+++ b/examples/disabled/test.cpp
@@ -14,7 +14,11 @@
 
 static int throws(bool in) {
     if(in)
+#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS
         throw "whops!";
+#else // DOCTEST_CONFIG_NO_EXCEPTIONS
+        return 0;
+#endif // DOCTEST_CONFIG_NO_EXCEPTIONS
     return 42;
 }