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