[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / warn-missing-super.m
blobe3f2f418ffffed2d61f2b05e7614334e07376674
1 @protocol NSCopying @end
3 __attribute__((objc_root_class))
4 @interface NSObject <NSCopying>
5 - (void)dealloc;
6 @end
8 @implementation NSObject
9 - (void)dealloc {
10   // Root class, shouldn't warn
12 - (void)finalize {
13   // Root class, shouldn't warn
15 @end
17 @interface Subclass1 : NSObject
18 - (void)dealloc;
19 - (void)finalize;
20 @end
22 @implementation Subclass1
23 - (void)dealloc {
25 - (void)finalize {
27 @end
29 @interface Subclass2 : NSObject
30 - (void)dealloc;
31 - (void)finalize;
32 @end
34 @implementation Subclass2
35 - (void)dealloc {
36   [super dealloc];  // Shouldn't warn
38 - (void)finalize {
39   [super finalize];  // Shouldn't warn
41 @end
43 // RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck %s
44 // CHECK: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call
45 // CHECK: 1 warning generated.
47 // RUN: %clang_cc1 -fsyntax-only -fobjc-gc %s 2>&1 | FileCheck --check-prefix=CHECK-GC %s
48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call
49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call
50 // CHECK-GC: 2 warnings generated.
52 // RUN: %clang_cc1 -fsyntax-only -fobjc-gc-only %s 2>&1 | FileCheck --check-prefix=CHECK-GC-ONLY %s
53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call
54 // CHECK-GC-ONLY: 1 warning generated.
56 // RUN: not %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin10 -fobjc-arc %s 2>&1 | FileCheck --check-prefix=CHECK-ARC %s
57 // CHECK-ARC: warn-missing-super.m:36:10: error: ARC forbids explicit message send of 'dealloc'
58 // CHECK-ARC: 1 error generated.