Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
clang
/
test
/
Sema
/
implicit-cast.c
blob: 088b1958d9b85c43482a38f3e4852fb340f08c9f [
file
]
// RUN: %clang_cc1 -fsyntax-only %s
static
char
*
test1
(
int
cf
)
{
return
cf
?
"abc"
:
0
;
}
static
char
*
test2
(
int
cf
)
{
return
cf
?
0
:
"abc"
;
}