2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / protocol.m
blob539fc2994c257d0542cec5d0374a9bc90f0bcad3
1 @protocol Foo
2 - (void)foo;
3 @end
5 @interface Foo_c <Foo>
8 - (void)foo;
9 @end
11 @implementation Foo_c
12 - (void)foo
15 @end
17 int main (void)
19   return 0;