blob: e36f0407bf8df88a9afcd05a439a304aa02c1570 [file] [log] [blame]
Chris Lattner91891562008-05-04 18:36:18 +00001// Comma is not allowed in C89
Argyrios Kyrtzidisc577a0e2008-06-12 12:40:02 +00002// RUN: not clang -E %s -std=c89 -pedantic-errors &&
Chris Lattner91891562008-05-04 18:36:18 +00003
4// Comma is allowed if unevaluated in C99
5// RUN: clang -E %s -std=c99 -pedantic-errors
6
7// PR2279
8
9#if 0? 1,2:3
10#endif