blob: ce98586306191555f4b10b712cda1ed99c24c5ee [file] [log] [blame]
Fariborz Jahanian8f674a82012-05-15 16:33:04 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Winterface-block-ivar %s
2// rdar://10763173
3
4@interface I
5{
6 @protected int P_IVAR; // expected-warning {{declaration of ivar in the interface block is deprecated}}
7
8 @public int PU_IVAR; // expected-warning {{declaration of ivar in the interface block is deprecated}}
9
10 @private int PRV_IVAR; // expected-warning {{declaration of ivar in the interface block is deprecated}}
11}
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