OSDN Git Service

* config/default.exp, gcc.dg/cpp/cpp.exp, gcc.dg/dg.exp,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / execute / bycopy-1.m
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
13 int main (void)
14 {
15   [nil bycopyMethod];
16
17    exit (0);
18 }
19
20