| 1 | @import category_top; |
|---|---|
| 2 | #import "category_right_sub.h" |
| 3 | |
| 4 | @interface Foo(Right1) |
| 5 | -(void)right1; |
| 6 | @end |
| 7 | |
| 8 | @interface Foo(Right2) |
| 9 | -(void)right2; |
| 10 | @end |
| 11 | |
| 12 | @interface Foo(Duplicate) |
| 13 | @end |
| 14 |
| 1 | @import category_top; |
|---|---|
| 2 | #import "category_right_sub.h" |
| 3 | |
| 4 | @interface Foo(Right1) |
| 5 | -(void)right1; |
| 6 | @end |
| 7 | |
| 8 | @interface Foo(Right2) |
| 9 | -(void)right2; |
| 10 | @end |
| 11 | |
| 12 | @interface Foo(Duplicate) |
| 13 | @end |
| 14 |