view clang/test/Parser/objc-alias-printing.m @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children c4bab56944e8
line wrap: on
line source

// 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;
}