[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / method-direct-one-definition.m
blob3dcf89d784cf10d1b3e1b523902b48bbcd0faf27
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-protocol-method-implementation %s
3 __attribute__((objc_root_class))
4 @interface A
5 @end
7 @interface A (Cat)
8 - (void)A_Cat __attribute__((objc_direct)); // expected-note {{previous declaration is here}}
9 @end
11 @implementation A
12 - (void)A_Cat { // expected-error {{direct method was declared in a category but is implemented in the primary interface}}
14 @end
16 __attribute__((objc_root_class))
17 @interface B
18 - (void)B_primary __attribute__((objc_direct)); // expected-note {{previous declaration is here}}
19 @end
21 @interface B ()
22 - (void)B_extension __attribute__((objc_direct)); // expected-note {{previous declaration is here}}
23 @end
25 @interface B (Cat)
26 - (void)B_Cat __attribute__((objc_direct));
27 @end
29 @interface B (OtherCat)
30 - (void)B_OtherCat __attribute__((objc_direct)); // expected-note {{previous declaration is here}}
31 @end
33 @implementation B
34 - (void)B_primary {
36 - (void)B_extension {
38 - (void)B_implOnly __attribute__((objc_direct)) { // expected-note {{previous declaration is here}}
40 @end
42 @implementation B (Cat)
43 - (void)B_primary { // expected-error {{direct method was declared in the primary interface but is implemented in a category}}
45 - (void)B_extension { // expected-error {{direct method was declared in an extension but is implemented in a different category}}
47 - (void)B_Cat {
49 - (void)B_OtherCat { // expected-error {{direct method was declared in a category but is implemented in a different category}}
51 - (void)B_implOnly __attribute__((objc_direct)) { // expected-error {{direct method declaration conflicts with previous direct declaration of method 'B_implOnly'}}
53 @end
55 __attribute__((objc_root_class))
56 @interface C
57 - (void)C1 __attribute__((objc_direct)); // expected-note {{previous declaration is here}}
58 - (void)C2;                              // expected-note {{previous declaration is here}}
59 @end
61 @interface C (Cat)
62 - (void)C1;                              // expected-error {{method declaration conflicts with previous direct declaration of method 'C1'}}
63 - (void)C2 __attribute__((objc_direct)); // expected-error {{direct method declaration conflicts with previous declaration of method 'C2'}}
64 @end