aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/236 proper args splitting/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/common/236 proper args splitting/main.c')
-rw-r--r--meson/test cases/common/236 proper args splitting/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/meson/test cases/common/236 proper args splitting/main.c b/meson/test cases/common/236 proper args splitting/main.c
new file mode 100644
index 000000000..4b2038fcb
--- /dev/null
+++ b/meson/test cases/common/236 proper args splitting/main.c
@@ -0,0 +1,11 @@
+#ifndef FOO
+# error "FOO is not defined"
+#endif
+
+#ifndef BAR
+# error "BAR is not defined"
+#endif
+
+int main(void) {
+ return 0;
+}