Files
llvm-project/clang/test/Preprocessor/expr_comma.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

11 lines
212 B
C

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