• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1  -fsyntax-only -Wselector -verify %s
2// rdar://8851684
3@interface  I
4- length;
5@end
6
7static inline SEL IsEmpty() {
8    return @selector(length);
9}
10
11int main (int argc, const char * argv[]) {
12    return 0;
13}
14
15