blob: 88ceabf8e4809621d85c529d13ed0f6a8b54f720 [file] [log] [blame]
Chris Lattnerd89e4582008-05-04 18:36:18 +00001// Comma is not allowed in C89
Daniel Dunbar8b576972009-11-08 01:45:36 +00002// RUN: not clang-cc -E %s -std=c89 -pedantic-errors
Chris Lattnerd89e4582008-05-04 18:36:18 +00003
4// Comma is allowed if unevaluated in C99
Daniel Dunbara45cf5b2009-03-24 02:24:46 +00005// RUN: clang-cc -E %s -std=c99 -pedantic-errors
Chris Lattnerd89e4582008-05-04 18:36:18 +00006
7// PR2279
8
9#if 0? 1,2:3
10#endif