Files
netbsd/gnu/dist/gcc4/gcc/testsuite/objc/execute/protocol.m
2013-04-06 16:48:33 +02:00

22 lines
156 B
Objective-C

@protocol Foo
- (void)foo;
@end
@interface Foo_c <Foo>
{
}
- (void)foo;
@end
@implementation Foo_c
- (void)foo
{
}
@end
int main (void)
{
return 0;
}