summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/ci/samples/test6.cpp12
-rw-r--r--tools/ci/samples/test6.h6
2 files changed, 18 insertions, 0 deletions
diff --git a/tools/ci/samples/test6.cpp b/tools/ci/samples/test6.cpp
new file mode 100644
index 0000000..3a39d53
--- /dev/null
+++ b/tools/ci/samples/test6.cpp
@@ -0,0 +1,12 @@
+#include "test6.h"
+
+#ifndef QQQ
+#include "include1.h"
+#else // QQQ
+#include "include2.h"
+#endif // QQQ
+
+int function1()
+{
+ return 0;
+}
diff --git a/tools/ci/samples/test6.h b/tools/ci/samples/test6.h
new file mode 100644
index 0000000..9001bfc
--- /dev/null
+++ b/tools/ci/samples/test6.h
@@ -0,0 +1,6 @@
+#ifndef TEST6
+#define TEST6
+
+int function1();
+
+#endif // TEST6 \ No newline at end of file