Sign in
cobalt
/
cobalt
/
a7b1cfadc52288d71702934fd93743a24aea060a
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
;
}