unused-ivars.m revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -analyze -warn-objc-unused-ivars %s -verify
2
3@interface A
4{
5  @private int x; // expected-warning {{Instance variable 'x' in class 'A' is never used}}
6}
7@end
8
9@implementation A @end
10
11