[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaObjC / category-direct-members-protocol-conformance.m
blobdfee42f5886976838efc6b05e844b01767a8ae3e
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 __attribute__((objc_root_class))
4 @interface RootClass
6 - (void)baseMethod;
8 @end
10 __attribute__((objc_direct_members))
11 @interface I : RootClass
13 - (void)direct; // expected-note {{direct member declared here}}
15 @end
17 @protocol P
18 - (void)direct;
19 @end
21 @interface I (Cat1) <P> // expected-error {{category 'Cat1' cannot conform to protocol 'P' because of direct members declared in interface 'I'}}
22 @end
24 @protocol BaseP
25 - (void)baseMethod;
26 @end
28 @interface I (CatBase) <BaseP> // OK
29 @end
31 @protocol P2
32 - (void)indirect;
33 @end
35 @interface I (Cat2) <P2> // OK
36 - (void)indirect;
37 @end
39 @protocol P3
40 - (void)indirect3;
41 @end
43 @interface I (Cat3) <P3> // OK
44 @end
46 @interface ExpDirect : RootClass
48 - (void)direct __attribute__((objc_direct)); // expected-note {{direct member declared here}}
50 - (void)directRecursive __attribute__((objc_direct)); // expected-note {{direct member declared here}}
52 @end
54 @interface ExpDirect (CatExpDirect) <P> // expected-error {{category 'CatExpDirect' cannot conform to protocol 'P' because of direct members declared in interface 'ExpDirect'}}
55 @end
57 @protocol PRecursive1
58 - (void)directRecursive;
59 @end
61 @protocol PRecursiveTop <PRecursive1>
62 @end
64 @interface ExpDirect () <PRecursiveTop> // expected-error {{class extension cannot conform to protocol 'PRecursive1' because of direct members declared in interface 'ExpDirect'}}
65 @end
68 @protocol PProp
70 @property (nonatomic, readonly) I *name;
72 @end
74 __attribute__((objc_direct_members))
75 @interface IProp1 : RootClass
77 @property (nonatomic, readonly) I *name; // expected-note {{direct member declared here}}
79 @end
81 @interface IProp1 () <PProp> // expected-error {{class extension cannot conform to protocol 'PProp' because of direct members declared in interface 'IProp1'}}
82 @end
85 @protocol PProp2
87 @property (nonatomic, readonly, class) I *name;
89 @end
91 @interface IProp2 : RootClass
93 @property (nonatomic, readonly, class, direct) I *name; // expected-note {{direct member declared here}}
95 @end
97 @interface IProp2 () <PProp2> // expected-error {{class extension cannot conform to protocol 'PProp2' because of direct members declared in interface 'IProp2'}}
98 @end