aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/sameBaseName/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/sameBaseName/main.c')
-rw-r--r--tests/auto/blackbox/testdata/sameBaseName/main.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/sameBaseName/main.c b/tests/auto/blackbox/testdata/sameBaseName/main.c
new file mode 100644
index 000000000..07da20307
--- /dev/null
+++ b/tests/auto/blackbox/testdata/sameBaseName/main.c
@@ -0,0 +1,18 @@
+extern void printHelloC();
+extern void printHelloCpp();
+
+#ifdef __APPLE__
+extern void printHelloObjc();
+extern void printHelloObjcpp();
+#endif
+
+int main()
+{
+ printHelloC();
+ printHelloCpp();
+#ifdef __APPLE__
+ printHelloObjc();
+ printHelloObjcpp();
+#endif
+ return 0;
+}