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