minix/external/bsd/llvm/dist/clang/test/SemaObjC/no-ivar-in-interface-block.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

32 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