Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / objc / execute / bycopy-1.m
blob83f4b270b8fbeaafc60cc55f0473ff93097ebfae
1 /*
2  * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3  * Fri Feb  2 11:48:01 GMT 2001
4  */
6 #include <objc/objc.h>
7 #include <objc/Protocol.h>
9 @protocol MyProtocol
10 - (bycopy id) bycopyMethod;
11 @end
13 int main (void)
15   [nil bycopyMethod];
17    exit (0);