diff options
Diffstat (limited to 'Tests/BuildDepends/Project/bar.cxx')
-rw-r--r-- | Tests/BuildDepends/Project/bar.cxx | 11 |
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; +} |