summaryrefslogtreecommitdiffstats
path: root/test cases/common/172 identical target name in subproject flat layout/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/172 identical target name in subproject flat layout/main.c')
-rw-r--r--test cases/common/172 identical target name in subproject flat layout/main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/test cases/common/172 identical target name in subproject flat layout/main.c b/test cases/common/172 identical target name in subproject flat layout/main.c
new file mode 100644
index 0000000..6f02aeb
--- /dev/null
+++ b/test cases/common/172 identical target name in subproject flat layout/main.c
@@ -0,0 +1,16 @@
+#include <stdio.h>
+
+int meson_test_main_foo(void);
+int meson_test_subproj_foo(void);
+
+int main(void) {
+ if (meson_test_main_foo() != 10) {
+ printf("Failed meson_test_main_foo\n");
+ return 1;
+ }
+ if (meson_test_subproj_foo() != 20) {
+ printf("Failed meson_test_subproj_foo\n");
+ return 1;
+ }
+ return 0;
+}