[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / selector-2.m
blob23a0c801821b1e71fb3dc59e01c591e96ff66a7b
1 // RUN: %clang_cc1  -fsyntax-only -Wselector -verify %s
2 // expected-no-diagnostics
3 @interface  I
4 - length;
5 @end
7 static inline SEL IsEmpty(void) {
8     return @selector(length);
11 int main (int argc, const char * argv[]) {
12     return 0;