diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-13 20:38:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-13 20:38:43 +0000 |
commit | d98d975ccdce7ec442ac26f682404cb71df40ff8 (patch) | |
tree | 88cf0cc1c4a0eb40b63d9bee4ce3faa3665ff1fb /test/Preprocessor/expr_invalid_tok.c | |
parent | 72e1c6cee10c0325a0398b6d8a065862665e4b13 (diff) |
Fix PR2220, making diagnostics for unexpected tokens in pp expressions
more nice.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/expr_invalid_tok.c')
-rw-r--r-- | test/Preprocessor/expr_invalid_tok.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Preprocessor/expr_invalid_tok.c b/test/Preprocessor/expr_invalid_tok.c new file mode 100644 index 0000000000..2918bc6536 --- /dev/null +++ b/test/Preprocessor/expr_invalid_tok.c @@ -0,0 +1,10 @@ +// RUN: not clang -E %s 2>&1 | grep 'invalid token at start of a preprocessor expression' +// RUN: not clang -E %s 2>&1 | grep 'token is not a valid binary operator in a preprocessor subexpression' +// PR2220 + +#if 1 * * 2 +#endif + +#if 4 [ 2 +#endif + |