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]; |
8 |
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]; |
8 |