repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
objc-qualified-property-lookup.m
blob
fac582700cc79572adfbf054fa10da0c6f076900
1
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
// expected-no-diagnostics
3
4
@interface NSObject @end
5
6
@protocol TextInput
7
-editRange;
8
@end
9
10
@interface I {
11
NSObject<TextInput>* editor;
12
}
13
- (id) Meth;
14
@end
15
16
@implementation I
17
- (id) Meth {
18
return editor.editRange;
19
}
20
@end
21