summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/protocol.m
blob: 539fc2994c257d0542cec5d0374a9bc90f0bcad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@protocol Foo
- (void)foo;
@end

@interface Foo_c <Foo>
{
}
- (void)foo;
@end

@implementation Foo_c
- (void)foo
{
}
@end

int main (void)
{
  return 0;
}