[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / protocols.m
blob77c10fa21b77fc48a9b8c65a561b31cf6e35c385
1 // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
3 @interface INTF1
4 @required  // expected-error {{directive may only be specified in protocols only}}
5 - (int) FooBar;
6 - (int) FooBar1;
7 - (int) FooBar2;
8 @optional  // expected-error {{directive may only be specified in protocols only}}
9 + (int) C;
11 - (int)I;
12 @end
14 @protocol p1,p2,p3;
16 @protocol p1;
18 @protocol PROTO1
19 @required 
20 - (int) FooBar;
21 @optional
22 - (void) MyMethod1;
23 + (int) S;
24 @end
27 @protocol PROTO2<p1>
28 @end
30 @protocol p1 @end
32 @protocol PROTO<p1>     // expected-note {{previous definition is here}}
33 @end
35 @protocol PROTO<p1>     // expected-warning {{duplicate protocol definition of 'PROTO'}}
36 @end
38 @protocol PROTO3<p1, p1>
39 @end
41 @protocol p2 <p1>
42 @end
44 @protocol PROTO4 <p1, p2, PROTO, PROTO3, p3> 
45 @end
47 @protocol XX;
48 @protocol YY <XX>  // Use of declaration of XX here should not cause a warning.
49 - zz;
50 @end
53 // Detect circular dependencies.
54 @protocol B;
55 @protocol C < B > // expected-note{{previous definition is here}}
56 @end
57 @protocol A < C > 
58 @end
59 @protocol B < A > // expected-error{{protocol has circular dependency}}
60 @end
62 @protocol P
63 - (int)test:(int)param, ..; // expected-error{{type specifier missing}} \
64                       // expected-error{{expected ';' after method prototype}}
65 @end