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