blob: 1d3b518aa5ce6c132ddfda4c5bdb0e5e764ebd6c [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -Wobjc-interface-ivars %s
// rdar://10763173
@interface I
{
@protected int P_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
@public int PU_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
@private int PRV_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
}
@end
@interface I()
{
int I1;
int I2;
}
@end
@interface I()
{
int I3, I4;
}
@end
@implementation I
{
int I5;
int I6;
}
@end