Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
a78c464c9ecf519ec0908294294c7539c7f5384f
/
.
/
clang
/
test
/
Sema
/
implicit-cast.c
blob: fe83bd93e33ee6ccb86ab79b51703afce6f829bd [
file
] [
log
] [
blame
]
Steve Naroff
a78c464
2007-10-18 05:13:08 +0000
[
diff
] [
blame^
]
1
// RUN: clang -fsyntax-only %s
2
3
static
char
*
test1
(
int
cf
)
{
4
return
cf
?
"abc"
:
0
;
5
}
6
static
char
*
test2
(
int
cf
)
{
7
return
cf
?
0
:
"abc"
;
8
}