diff options
Diffstat (limited to 'Tests/TryCompile/exit_with_error.c')
-rw-r--r-- | Tests/TryCompile/exit_with_error.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/TryCompile/exit_with_error.c b/Tests/TryCompile/exit_with_error.c index a9a283d..f3c523d 100644 --- a/Tests/TryCompile/exit_with_error.c +++ b/Tests/TryCompile/exit_with_error.c @@ -1,4 +1,7 @@ +#include <stdio.h> + int main() { + printf("hello world\n"); return -1; } |