blob: 48d4f6cd0a8161aff22035e98bddb01cceaaea20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@import category_top;
@interface Foo(Right1)
-(void)right1;
@end
@interface Foo(Right2)
-(void)right2;
@end
@interface Foo(Duplicate) // expected-warning {{duplicate definition of category}}
@end
|