blob: 23a0c801821b1e71fb3dc59e01c591e96ff66a7b [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
// expected-no-diagnostics
@interface I
- length;
@end
static inline SEL IsEmpty(void) {
return @selector(length);
}
int main (int argc, const char * argv[]) {
return 0;
}