]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/PR2919-builtin-types-compat-strips-crv.c
Vendor import of clang release_40 branch r292732:
[FreeBSD/FreeBSD.git] / test / Sema / PR2919-builtin-types-compat-strips-crv.c
1 // RUN: %clang_cc1 -fsyntax-only %s
2
3 typedef struct foo T0;
4 typedef const struct foo T1;
5
6 int a0[__builtin_types_compatible_p(T0,
7                                     const T1) ? 1 : -1];