[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Analysis / unused-ivars.m
blob32e7e80fc42768477bb080be65e9e8e4836c1715
1 // RUN: %clang_analyze_cc1 -fblocks -analyzer-checker=osx.cocoa.UnusedIvars -verify -Wno-objc-root-class %s
3 //===--- BEGIN: Delta-debugging reduced headers. --------------------------===//
5 @protocol NSObject
6 - (id)retain;
7 - (oneway void)release;
8 @end
9 @interface NSObject <NSObject> {}
10 - (id)init;
11 + (id)alloc;
12 @end
14 //===--- END: Delta-debugging reduced headers. ----------------------------===//
16 // This test case tests the basic functionality of the unused ivar test.
17 @interface TestA {
18 @private
19   int x; // expected-warning {{Instance variable 'x' in class 'TestA' is never used}}
21 @end
22 @implementation TestA @end
24 // This test case tests whether the unused ivar check handles blocks that
25 // reference an instance variable.
26 @interface TestB : NSObject {
27 @private
28   id _ivar; // no-warning
30 @property (readwrite,retain) id ivar;
31 @end
33 @implementation TestB
34 - (id)ivar {
35   __attribute__((__blocks__(byref))) id value = ((void*)0);
36   void (^b)(void) = ^{ value = _ivar; };
37   b();
38   return value;
41 - (void)setIvar:(id)newValue {
42   void (^b)(void) = ^{ [_ivar release]; _ivar = [newValue retain]; };
43   b();
45 @end
47 //===----------------------------------------------------------------------===//
48 // Detect that ivar is in use, if used in category in the same file as the
49 // implementation.
50 //===----------------------------------------------------------------------===//
51 @protocol Protocol6260004
52 - (id) getId;
53 @end
55 @interface RDar6260004 {
56 @private
57   id x; // no-warning
59 @end
60 @implementation RDar6260004 @end
61 @implementation RDar6260004 (Protocol6260004)
62 - (id) getId {
63   return x;
65 @end
67 //===----------------------------------------------------------------------===//
68 // ivars referenced by lexically nested functions should not be flagged as
69 // unused
70 //===----------------------------------------------------------------------===//
71 @interface RDar7254495 {
72 @private
73   int x; // no-warning
75 @end
77 @implementation RDar7254495
78 int radar_7254495(RDar7254495 *a) {
79   return a->x;
81 @end
83 //===----------------------------------------------------------------------===//
84 // Consult attribute((unused)) to silence warnings about unused instance
85 // variables.
86 //===----------------------------------------------------------------------===//
87 @interface RDar7353683 {
88 @private
89   id x __attribute__((unused));
91 @end
93 @implementation RDar7353683
94 @end
96 //===----------------------------------------------------------------------===//
97 // Unused bitfield ivars trigger cause weird diagnostic:
98 // "Instance variable '' in class..."
99 //===----------------------------------------------------------------------===//
100 @interface RDar8481311 {
101 @private
102     unsigned bitfield:1; // expected-warning {{Instance variable 'bitfield' in class 'RDar8481311' is never used}}
104 @end
106 @implementation RDar8481311
107 @end
109 @class NSString;
110 @interface Radar11059352_1 {
111 @private
112     NSString *_pathString;
114 @property (readonly, strong) NSString *pathString;
115 @end
117 @interface Radar11059352 {
118 @private
119 Radar11059352_1 *_workspacePath;
121 @end
123 @implementation Radar11059352
125 - (void)useWorkspace {
126     NSString *workspacePathString = _workspacePath.pathString;
128 @end