Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
e7bb777caf478ac8b096bd6a0c14d78ea8b2f5be
/
.
/
test
/
Parser
/
objc-alias-printing.m
blob: 8b9cc6e1392448ab16bcb92885bc7b6722e64c1e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -ast-print %s
@protocol
P1
@end
@protocol
P2
@end
@interface
INTF
@end
@compatibility_alias
alias INTF
;
int
foo
()
{
INTF
*
pi
;
INTF
<
P2
,
P1
>
*
pi2
;
alias
*
p
;
alias
<
P1
,
P2
>
*
p2
;
return
pi2
==
p2
;
}