Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 1 | // Matches |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2 | @interface I1 { |
| 3 | int ivar1; |
| 4 | } |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 5 | @end |
| 6 | |
| 7 | // Matches |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 8 | @interface I2 : I1 { |
| 9 | float ivar2; |
| 10 | } |
| 11 | @end |
| 12 | |
| 13 | // Ivar mismatch |
| 14 | @interface I3 { |
| 15 | int ivar1; |
| 16 | int ivar2; |
| 17 | } |
| 18 | @end |
| 19 | |
| 20 | // Superclass mismatch |
| 21 | @interface I4 : I2 { |
| 22 | } |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 23 | @end |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 24 | |
| 25 | // Methods match |
| 26 | @interface I5 |
| 27 | - (int)foo; |
| 28 | + (float)bar; |
| 29 | @end |
| 30 | |
| 31 | // Method mismatch |
| 32 | @interface I6 |
| 33 | - (int)foo; |
| 34 | + (int)foo; |
| 35 | @end |
| 36 | |
| 37 | // Method mismatch |
| 38 | @interface I7 |
| 39 | - (int)foo; |
| 40 | + (int)bar:(int)x; |
| 41 | @end |
| 42 | |
| 43 | // Method mismatch |
| 44 | @interface I8 |
| 45 | - (int)foo; |
| 46 | + (int)bar:(float)x; |
| 47 | @end |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 48 | |
| 49 | // Matching protocol |
| 50 | @protocol P0 |
| 51 | + (int)foo; |
| 52 | - (int)bar:(float)x; |
| 53 | @end |
| 54 | |
| 55 | // Protocol with mismatching method |
| 56 | @protocol P1 |
| 57 | + (int)foo; |
| 58 | - (int)bar:(float)x; |
| 59 | @end |
| 60 | |
| 61 | // Interface with protocol |
| 62 | @interface I9 <P0> |
| 63 | + (int)foo; |
| 64 | - (int)bar:(float)x; |
| 65 | @end |
| 66 | |
| 67 | // Protocol with protocol |
| 68 | @protocol P2 <P0> |
| 69 | - (float)wibble:(int)a1 second:(int)a2; |
| 70 | @end |