Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
Parser
/
objc-alias-printing.m
blob: afb522cfa3d9e9a7def86f0bb0776141f0a9c24b [
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
;
}