blob: 0a24baca46c90a0b25d6558747e31762ed58c495 [file] [log] [blame]
Chris Lattner91891562008-05-04 18:36:18 +00001// Comma is not allowed in C89
Daniel Dunbard7d5f022009-03-24 02:24:46 +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