blob: dd6d69e597cd0218af4749ad868db7c3137947ef [file] [log] [blame]
// RUN: clang -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