Clang Project

clang_source_code/test/Sema/PR2919-builtin-types-compat-strips-crv.c
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