Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
50c9d08fa533b51e8dd36644b686d726c98d9482
/
.
/
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"
;
}