unused-ivars.m revision d427023c334fe03105d9359711a3df4d6f23b344
1// RUN: clang -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