Files
llvm-project/clang/test/SemaObjC/no-ivar-in-interface-block.m
Fariborz Jahanian 14fd801f8f objective-C: remove use of 'ivar' in favor of
'instance variable' in text of all diagnostics
for objective-C: // rdar://12352442

llvm-svn: 164559
2012-09-24 22:00:36 +00:00

33 lines
614 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class -Wobjc-interface-ivars %s
// rdar://10763173
@interface I
{
@protected int P_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
@public int PU_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
@private int PRV_IVAR; // expected-warning {{declaration of instance variables 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