xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/bycopy-1.m (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1/*
2 * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3 * Fri Feb  2 11:48:01 GMT 2001
4 */
5
6#include <objc/objc.h>
7#include <objc/Protocol.h>
8
9@protocol MyProtocol
10- (bycopy id) bycopyMethod;
11@end
12
13int main (void)
14{
15  [nil bycopyMethod];
16
17   exit (0);
18}
19
20
21