PR2919-builtin-types-compat-strips-crv.c revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
1// RUN: %clang_cc1 -fsyntax-only %s
2
3typedef struct foo T0;
4typedef const struct foo T1;
5
6int a0[__builtin_types_compatible_p(T0,
7                                    const T1) ? 1 : -1];
8