summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/protocol-property-synth.m
blob: e91f3552310d9b907d311e0287bba2c52eda80b1 (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-cc -triple x86_64-apple-darwin10 -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