Sign in
llvm
/
llvm-project
/
7b8189aab8e9ade19fb2d0da34c2dff6cf46df1f
/
.
/
clang
/
test
/
Sema
/
PR2919-builtin-types-compat-strips-crv.c
blob: 2ead63c8e43e19f2441003fee7be19b4a87aa736 [
file
]
// RUN: %clang_cc1 -fsyntax-only %s
// RUN: %clang_cc1 -fsyntax-only %s -fexperimental-new-constant-interpreter
typedef
struct
foo T0
;
typedef
const
struct
foo T1
;
int
a0
[
__builtin_types_compatible_p
(
T0
,
const
T1
)
?
1
:
-
1
];