Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
a56f7460baf475151e03b1249a1343349328e39c
/
.
/
test
/
CodeGen
/
2008-08-25-incompatible-cond-expr.m
blob: 481fe109d36ff0872e07a02daa41084579d3157b [
file
] [
log
] [
blame
]
Daniel Dunbar
a56f746
2008-08-26 00:41:39 +0000
[
diff
] [
blame^
]
1
@protocol
P0
2
@end
3
@interface
A
<
P0
>
4
@end
5
6
id f0
(
int
a
,
id
<
P0
>
x
,
A
*
p
)
{
7
return
a
?
x
:
p
;
8
}