squashing git history for the last time
diff --git a/examples/disabled/main.cpp b/examples/disabled/main.cpp
new file mode 100644
index 0000000..54f4475
--- /dev/null
+++ b/examples/disabled/main.cpp
@@ -0,0 +1,31 @@
+#define DOCTEST_CONFIG_DISABLE
+
+#define DOCTEST_CONFIG_MAIN
+#define DOCTEST_CONFIG_IMPLEMENT
+#include "doctest.h"
+
+#include <cstdio>
+
+doctest_test("name1") {
+ printf("Anyone there?\n");
+}
+
+doctest_testsuite(the testsuite!);
+
+doctest_test(ops) {
+ printf("Anyone there?\n");
+}
+
+doctest_testsuite_end;
+
+struct Empty {
+ virtual ~Empty() {}
+};
+
+doctest_fixture(Empty, "name") {
+ printf("Help?\n");
+}
+
+doctest_fixture(Empty, ops) {
+ printf("Help?\n");
+}