blob: 897f7d863bca3347f15ca774f892c3aac1a5b6b7 [file] [log] [blame]
Fariborz Jahaniandc3eb6a2012-05-15 17:43:16 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Winterface-ivars %s
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00002// rdar://10763173
3
4@interface I
5{
Fariborz Jahaniandc3eb6a2012-05-15 17:43:16 +00006 @protected int P_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00007
Fariborz Jahaniandc3eb6a2012-05-15 17:43:16 +00008 @public int PU_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00009
Fariborz Jahaniandc3eb6a2012-05-15 17:43:16 +000010 @private int PRV_IVAR; // expected-warning {{declaration of ivars 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