blob: 538727d12bf34d721ee71e5fc886c2213adb2928 [file] [log] [blame]
Chris Lattner91891562008-05-04 18:36:18 +00001// Comma is not allowed in C89
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: not %clang_cc1 -E %s -std=c89 -pedantic-errors
Chris Lattner91891562008-05-04 18:36:18 +00003
4// Comma is allowed if unevaluated in C99
Daniel Dunbara5728872009-12-15 20:14:24 +00005// RUN: %clang_cc1 -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