diff options
Diffstat (limited to 'test cases/failing build/3 pch disabled/c/pch')
-rw-r--r-- | test cases/failing build/3 pch disabled/c/pch/prog.h | 1 | ||||
-rw-r--r-- | test cases/failing build/3 pch disabled/c/pch/prog_pch.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test cases/failing build/3 pch disabled/c/pch/prog.h b/test cases/failing build/3 pch disabled/c/pch/prog.h new file mode 100644 index 0000000..354499a --- /dev/null +++ b/test cases/failing build/3 pch disabled/c/pch/prog.h @@ -0,0 +1 @@ +#include<stdio.h> diff --git a/test cases/failing build/3 pch disabled/c/pch/prog_pch.c b/test cases/failing build/3 pch disabled/c/pch/prog_pch.c new file mode 100644 index 0000000..4960505 --- /dev/null +++ b/test cases/failing build/3 pch disabled/c/pch/prog_pch.c @@ -0,0 +1,5 @@ +#if !defined(_MSC_VER) +#error "This file is only for use with MSVC." +#endif + +#include "prog.h" |