Ted Kremenek | 3465318 | 2012-07-25 07:26:32 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class -Wobjc-interface-ivars %s |
Fariborz Jahanian | 8f674a8 | 2012-05-15 16:33:04 +0000 | [diff] [blame] | 2 | // rdar://10763173 |
| 3 | |
| 4 | @interface I |
| 5 | { |
Fariborz Jahanian | 59ed9e4 | 2012-09-24 22:00:36 +0000 | [diff] [blame] | 6 | @protected int P_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}} |
Fariborz Jahanian | 8f674a8 | 2012-05-15 16:33:04 +0000 | [diff] [blame] | 7 | |
Fariborz Jahanian | 59ed9e4 | 2012-09-24 22:00:36 +0000 | [diff] [blame] | 8 | @public int PU_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}} |
Fariborz Jahanian | 8f674a8 | 2012-05-15 16:33:04 +0000 | [diff] [blame] | 9 | |
Fariborz Jahanian | 59ed9e4 | 2012-09-24 22:00:36 +0000 | [diff] [blame] | 10 | @private int PRV_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}} |
Fariborz Jahanian | 8f674a8 | 2012-05-15 16:33:04 +0000 | [diff] [blame] | 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 |