blob: 5dc1a33301e2cb422575321d1c41614a7a6b3ed6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -rewrite-objc %s -o -
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002
3@interface Intf
4@end
5
6@implementation Intf(Category)
7- (void) CatMeth {}
8@end
9
10@implementation Another
11- (void) CatMeth {}
12@end