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
blob
c5668cc460869ccc87e41c25a039f92633783620
1
#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
2
3
@
class
NSString
;
4
5
@interface B1
6
-(
id
)
init
;
7
@end
8
9
@interface S1
:
B1
10
-(
int
)
prop
;
11
-(
void
)
setProp
:(
int
)
p
;
12
+(
id
)
s1
;
13
-(
id
)
initWithFoo
:(
NSString
*)
foo
;
14
@end