Files
llvm-project/clang/test/Preprocessor/expr_comma.c
Argyrios Kyrtzidis 351763e156 Multiple tests in a single test file must be linked with '&&'.
Otherwise, failing tests other than the last one will not be reported.

llvm-svn: 52231
2008-06-12 12:40:02 +00:00

11 lines
206 B
C

// Comma is not allowed in C89
// RUN: not clang -E %s -std=c89 -pedantic-errors &&
// Comma is allowed if unevaluated in C99
// RUN: clang -E %s -std=c99 -pedantic-errors
// PR2279
#if 0? 1,2:3
#endif