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
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
selector-2.m
blob
17d1872cc7ea24168a85a92b02449bb4ede172e7
1
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
2
// expected-no-diagnostics
3
// rdar://8851684
4
@interface I
5
- length;
6
@end
7
8
static inline SEL IsEmpty() {
9
return @selector(length);
10
}
11
12
int main (int argc, const char * argv[]) {
13
return 0;
14
}
15