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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
modules-objc-property
/
myModule.h
blob
4377d30a52db739d565e84d9d9d5d4e163f7162d
1
#ifndef MYMODULE
2
#define MYMODULE
3
4
@import ObjectiveC
;
5
6
@interface MyClass
:
NSObject
7
- (
int
)
propConflict
;
8
+ (
int
)
propConflict
;
9
@
property
(
readonly
)
int
propConflict
;
10
@
property
(
readonly
,
class
)
int
propConflict
;
11
@end
12
13
@implementation MyClass
14
- (
int
)
propConflict
15
{
16
return
5
;
17
}
18
+ (
int
)
propConflict
19
{
20
return
6
;
21
}
22
@end
23
24
#endif
// MYMODULE