repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
ARCMT
/
designated-init-in-header
/
header1.h.result
blob
974175b1c3e639d1b2cf4c7943f8547641b538c5
1
#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
2
3
@class NSString;
4
5
@interface B1
6
-(instancetype)init;
7
@end
8
9
@interface S1 : B1
10
@property (nonatomic) int prop;
11
+(instancetype)s1;
12
-(instancetype)initWithFoo:(NSString*)foo NS_DESIGNATED_INITIALIZER;
13
@end