view clang/test/CodeGenObjC/protocol-property-synth.m @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents 1f2b6ac9f198
children
line wrap: on
line source

// RUN: %clang_cc1 -emit-llvm -o %t %s

@interface BaseClass {
    id _delegate;
}
@end

@protocol MyProtocol
@optional
@property(assign) id delegate;
@end

@protocol AnotherProtocol
@optional
@property(assign) id myanother;
@end

@protocol SubProtocol <MyProtocol>
@property(assign) id another;
@end

@interface SubClass : BaseClass <SubProtocol, AnotherProtocol> {
}

@end

@implementation BaseClass @end 

@implementation SubClass
@synthesize delegate = _Subdelegate;
@synthesize another;
@synthesize myanother;
@end