summaryrefslogtreecommitdiffstats
path: root/test/Analysis/unused-ivars.m
blob: 632b395c3e081d267c2b247f9145e6260e86fe76 (plain)
1
2
3
4
5
6
7
8
9
10
// 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

OpenPOWER on IntegriCloud