Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Sema / PR2919-builtin-types-compat-strips-crv.c
blob9c1335786a50067cca39a222e2c6631fc1fb3d8a
1 // RUN: %clang_cc1 -fsyntax-only %s
3 typedef struct foo T0;
4 typedef const struct foo T1;
6 int a0[__builtin_types_compatible_p(T0,
7 const T1) ? 1 : -1];