blob: 632b395c3e081d267c2b247f9145e6260e86fe76 [file] [log] [blame]
// RUN: clang-cc -analyze -warn-objc-unused-ivars %s -verify
@interface A
{
@private int x; // expected-warning {{Instance variable 'x' in class 'A' is never used}}
}
@end
@implementation A @end