Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
0e8acbbba71ec6acd5dceb4fcbce63e463e1b755
/
.
/
test
/
Analysis
/
unused-ivars.m
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