diff options
Diffstat (limited to 'clang/test/Lexer/fixit-errors.c')
-rw-r--r-- | clang/test/Lexer/fixit-errors.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/Lexer/fixit-errors.c b/clang/test/Lexer/fixit-errors.c new file mode 100644 index 00000000000..13b42431951 --- /dev/null +++ b/clang/test/Lexer/fixit-errors.c @@ -0,0 +1,13 @@ +// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c - + +/* This is a test of the various code modification hints that are + provided as part of warning or extension diagnostics. Eventually, + we would like to actually try to perform the suggested + modifications and compile the result to test that no warnings + remain. */ +// FIXME: If you put a space at the end of the line, it doesn't work yet! +char *s = "hi\ +there"; + +// The following line isn't terminated, don't fix it. +int i; // expected-error{{no newline at end of file}} |