blob: af4797f1b64ecc4277ae7a020131d75c3fedf2dc [file] [log] [blame]
Ted Kremenek34653182012-07-25 07:26:32 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class -Wobjc-interface-ivars %s
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00002// rdar://10763173
3
4@interface I
5{
Fariborz Jahanian59ed9e42012-09-24 22:00:36 +00006 @protected int P_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00007
Fariborz Jahanian59ed9e42012-09-24 22:00:36 +00008 @public int PU_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00009
Fariborz Jahanian59ed9e42012-09-24 22:00:36 +000010 @private int PRV_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
Fariborz Jahanian8f674a82012-05-15 16:33:04 +000011}
12@end
13
14@interface I()
15{
16 int I1;
17 int I2;
18}
19@end
20
21@interface I()
22{
23 int I3, I4;
24}
25@end
26
27@implementation I
28{
29 int I5;
30 int I6;
31}
32@end