2008-05-05 02:36:18 +08:00
|
|
|
// Comma is not allowed in C89
|
2008-06-12 20:40:02 +08:00
|
|
|
// RUN: not clang -E %s -std=c89 -pedantic-errors &&
|
2008-05-05 02:36:18 +08:00
|
|
|
|
|
|
|
// Comma is allowed if unevaluated in C99
|
|
|
|
// RUN: clang -E %s -std=c99 -pedantic-errors
|
|
|
|
|
|
|
|
// PR2279
|
|
|
|
|
|
|
|
#if 0? 1,2:3
|
|
|
|
#endif
|