summaryrefslogtreecommitdiff
path: root/Tests/TryCompile/check_a_b.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TryCompile/check_a_b.c')
-rw-r--r--Tests/TryCompile/check_a_b.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/TryCompile/check_a_b.c b/Tests/TryCompile/check_a_b.c
new file mode 100644
index 000000000..05fba0f82
--- /dev/null
+++ b/Tests/TryCompile/check_a_b.c
@@ -0,0 +1,10 @@
+#ifndef DEF_A
+# error DEF_A not defined
+#endif
+#ifndef DEF_B
+# error DEF_B not defined
+#endif
+int main()
+{
+ return 0;
+}