Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
9bde77309fd2f9f7a53446e374472c48c81f5182
/
.
/
test
/
Sema
/
implicit-cast.c
blob: ce34ad6d1c651b0fe4efc709af4b529eef2bdd0b [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only %s
static
char
*
test1
(
int
cf
)
{
return
cf
?
"abc"
:
0
;
}
static
char
*
test2
(
int
cf
)
{
return
cf
?
0
:
"abc"
;
}