diff options
Diffstat (limited to 'Tests/TryCompile/exit_success.c')
-rw-r--r-- | Tests/TryCompile/exit_success.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/TryCompile/exit_success.c b/Tests/TryCompile/exit_success.c new file mode 100644 index 000000000..82f5b5f82 --- /dev/null +++ b/Tests/TryCompile/exit_success.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main() +{ + printf("hello world\n"); + return 0; +} |