mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04:00
19 lines
222 B
Objective-C
19 lines
222 B
Objective-C
// 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;
|
|
}
|