Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
59ddeabc4c0aa2fdeef5a9183e8af69db07b5e74
/
.
/
test
/
Parser
/
objc-alias-printing.m
blob: 67e013f1d3db997612b140e1dd58ff31d171254a [
file
] [
log
] [
blame
]
// RUN: clang -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
;
}