blob: fb75369a9a102212c3e7d69c2d193cdca843ce86 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
// rdar://8851684
@interface I
- length;
@end
static inline SEL IsEmpty() {
return @selector(length);
}
int main (int argc, const char * argv[]) {
return 0;
}
|