diff options
Diffstat (limited to 'test cases/failing build/3 pch disabled/c/prog.c')
-rw-r--r-- | test cases/failing build/3 pch disabled/c/prog.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/failing build/3 pch disabled/c/prog.c b/test cases/failing build/3 pch disabled/c/prog.c new file mode 100644 index 0000000..f17bc9e --- /dev/null +++ b/test cases/failing build/3 pch disabled/c/prog.c @@ -0,0 +1,9 @@ +// No includes here, they need to come from the PCH + +void func() { + fprintf(stdout, "This is a function that fails if stdio is not #included.\n"); +} + +int main(int argc, char **argv) { + return 0; +} |