[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / super-class-protocol-conformance.m
blob9d6df802484d8f3c6abf843f6ce4d97bd774f0d2
1 // RUN: %clang_cc1 -fsyntax-only -verify -disable-objc-default-synthesize-properties %s
3 @interface NSObject @end
5 @protocol TopProtocol
6   @property (readonly) id myString; // expected-note {{property}}
7 @end
9 @protocol SubProtocol <TopProtocol>
10 @end
12 @interface TopClass : NSObject <TopProtocol> {}
13 @end
15 @interface SubClass : TopClass <SubProtocol> {}
16 @end
18 @interface SubClass1 : TopClass {}      
19 @end
21 @implementation SubClass1 @end // Test1 - No Warning
23 @implementation TopClass  // expected-warning {{property 'myString' requires method 'myString' to be defined}}
24 @end
26 @implementation SubClass // Test3 - No Warning 
27 @end
29 @interface SubClass2  : TopClass<TopProtocol> 
30 @end
32 @implementation SubClass2 @end // Test 4 - No Warning
34 @interface SubClass3 : TopClass<SubProtocol> @end
35 @implementation SubClass3 @end  // Test 5 - No Warning 
37 @interface SubClass4 : SubClass3 @end
38 @implementation SubClass4 @end  // Test 5 - No Warning
40 @protocol NewProtocol
41   @property (readonly) id myNewString;  // expected-note {{property}}
42 @end
44 @interface SubClass5 : SubClass4 <NewProtocol> @end
45 @implementation SubClass5 @end   // expected-warning {{property 'myNewString' requires method 'myNewString' to be defined}}
47 @protocol SuperProtocol
48 @end
50 @interface Super <SuperProtocol> 
51 @end
53 @protocol ProtocolWithProperty <SuperProtocol>
54 @property (readonly, assign) id invalidationBacktrace; // expected-note {{property}}
55 @end
57 @interface INTF : Super <ProtocolWithProperty> 
58 @end
60 @implementation INTF @end // expected-warning{{property 'invalidationBacktrace' requires method 'invalidationBacktrace' to be defined}}