summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/protocol-property-synth.m
blob: f59de81f8b377211de08bffb39d93915f2451638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// RUN: clang -cc1 -fobjc-nonfragile-abi -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
OpenPOWER on IntegriCloud