expr_comma.c 213 B

12345678910
  1. // Comma is not allowed in C89
  2. // RUN: not %clang_cc1 -E %s -std=c89 -pedantic-errors
  3. // Comma is allowed if unevaluated in C99
  4. // RUN: %clang_cc1 -E %s -std=c99 -pedantic-errors
  5. // PR2279
  6. #if 0? 1,2:3
  7. #endif