[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / method-in-class-extension-impl.m
blob92527fecd4c4a8e8fa70037ea82e0fad44b15254
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 @protocol ViewDelegate @end
6 @interface NSTextView
7 - (id <ViewDelegate>)delegate;
8 @end
10 @interface FooTextView : NSTextView
11 @end
13 @interface FooTextView() 
14 - (id)delegate;
15 @end
17 @implementation FooTextView
18 - (id)delegate {return 0; }
19 @end