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