aboutsummaryrefslogtreecommitdiffstats
path: root/test/DebugInfo/Inputs/dwarfdump-objc.m
blob: 54fbee2ac39cfea5fc600cfad0af897973f6662c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compile with clang -g dwarfdump-objc.m -c -Wno-objc-root-class

@interface NSObject {} @end


@interface TestInterface
@property (readonly) int ReadOnly;
@property (assign) int Assign;
@property (readwrite) int ReadWrite;
@property (retain) NSObject *Retain;
@property (copy) NSObject *Copy;
@property (nonatomic) int NonAtomic;
@end

@implementation TestInterface
@end