X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fbycopy-2.m;fp=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fbycopy-2.m;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=dce028152a96fe459b5c10ccbfbfa3610cf0408f;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/objc/execute/bycopy-2.m b/gcc/testsuite/objc/execute/bycopy-2.m deleted file mode 100644 index dce02815..00000000 --- a/gcc/testsuite/objc/execute/bycopy-2.m +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Contributed by Nicola Pero - * Fri Feb 2 11:48:01 GMT 2001 - */ - -#include -#include -#include - -@protocol MyProtocol -+ (bycopy id) bycopyMethod; -@end - -@interface MyObject : Object -@end - -@implementation MyObject -+ (bycopy id) bycopyMethod -{ - return [MyObject alloc]; -} -@end - -int main (void) -{ - MyObject *object; - - object = [MyObject bycopyMethod]; - - exit (0); -} - -