xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/selector-2.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1  -fsyntax-only -Wselector -verify %s
2// expected-no-diagnostics
3// rdar://8851684
4@interface  I
5- length;
6@end
7
8static inline SEL IsEmpty() {
9    return @selector(length);
10}
11
12int main (int argc, const char * argv[]) {
13    return 0;
14}
15
16