summaryrefslogtreecommitdiffstats
path: root/test/Sema/PR2919-builtin-types-compat-strips-crv.c
blob: 160ec4a38058d788023460b1761d151c710b0c9c (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -fsyntax-only %s

typedef struct foo T0;
typedef const struct foo T1;

int a0[__builtin_types_compatible_p(T0,
                                    const T1) ? 1 : -1];