summaryrefslogtreecommitdiffstats
path: root/Tests/BuildDepends/Project/bar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BuildDepends/Project/bar.cxx')
-rw-r--r--Tests/BuildDepends/Project/bar.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/BuildDepends/Project/bar.cxx b/Tests/BuildDepends/Project/bar.cxx
new file mode 100644
index 0000000..4764af5
--- /dev/null
+++ b/Tests/BuildDepends/Project/bar.cxx
@@ -0,0 +1,11 @@
+#include "stdio.h"
+
+const char* foo();
+int main()
+{
+ int i;
+ printf("%s\n", foo());
+ fflush(stdout);
+ for(;;);
+ return 0;
+}