blob: 82bfca36b8f2c355085fa38fb4ebe6e1233ab8c6 [file] [log] [blame]
Chris Lattnerf8f94542008-04-13 20:38:43 +00001// RUN: not clang -E %s 2>&1 | grep 'invalid token at start of a preprocessor expression'
2// RUN: not clang -E %s 2>&1 | grep 'token is not a valid binary operator in a preprocessor subexpression'
Chris Lattnerdb65ff72008-05-05 20:07:41 +00003// RUN: not clang -E %s 2>&1 | grep ':14: error: expected end of line in preprocessor expression'
Chris Lattnerf8f94542008-04-13 20:38:43 +00004// PR2220
5
6#if 1 * * 2
7#endif
8
9#if 4 [ 2
10#endif
11
Chris Lattnerdb65ff72008-05-05 20:07:41 +000012
13// PR2284 - The constant-expr production does not including comma.
14#if 1 ? 2 : 0, 1
15#endif