blob: 539fc2994c257d0542cec5d0374a9bc90f0bcad3 [file] [log] [blame]
@protocol Foo
- (void)foo;
@end
@interface Foo_c <Foo>
{
}
- (void)foo;
@end
@implementation Foo_c
- (void)foo
{
}
@end
int main (void)
{
return 0;
}