1/*
2 * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3 * Fri Feb  2 11:48:01 GMT 2001
4 */
5
6#include "../../objc-obj-c++-shared/Protocol1.h"
7
8@protocol MyProtocol
9- (bycopy id) bycopyMethod;
10@end
11
12int main (void)
13{
14  [nil bycopyMethod];
15
16   exit (0);
17}
18
19
20