freebsd-dev/test/Sema/PR2919-builtin-types-compat-strips-crv.c
2010-01-01 10:34:51 +00:00

8 lines
187 B
C

// RUN: %clang_cc1 -fsyntax-only %s
typedef struct foo T0;
typedef const struct foo T1;
int a0[__builtin_types_compatible_p(T0,
const T1) ? 1 : -1];