Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / objc / execute / bycopy-1.m
blob358b6f92b32c912fe2ca7f52babb7fa8effe7195
1 /*
2  * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3  * Fri Feb  2 11:48:01 GMT 2001
4  */
5 #include <objc/objc.h>
7 @protocol MyProtocol
8 - (bycopy id) bycopyMethod;
9 @end
11 int main (void)
13   [nil bycopyMethod];
15   return 0;