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] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
selector-2.m
blob
23a0c801821b1e71fb3dc59e01c591e96ff66a7b
1
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
2
// expected-no-diagnostics
3
@interface I
4
- length;
5
@end
6
7
static inline SEL IsEmpty(void) {
8
return @selector(length);
9
}
10
11
int main (int argc, const char * argv[]) {
12
return 0;
13
}
14