// Example from C99 6.10.3.4p9
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
;
// CHECK: fprintf(stderr, "Flag");
;
// CHECK: fprintf(stderr, "X = %d\n", x);
;
// CHECK: puts("The first, second, and third items.");
;
// CHECK: ((x>y)?puts("x>y"): printf("x is %d but y is %d", x, y));