]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/bycopy-2.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / bycopy-2.m
diff --git a/gcc/testsuite/objc/execute/bycopy-2.m b/gcc/testsuite/objc/execute/bycopy-2.m
deleted file mode 100644 (file)
index dce0281..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
- * Fri Feb  2 11:48:01 GMT 2001
- */
-
-#include <objc/objc.h>
-#include <objc/Object.h>
-#include <objc/Protocol.h>
-
-@protocol MyProtocol
-+ (bycopy id<MyProtocol>) bycopyMethod;
-@end
-
-@interface MyObject : Object <MyProtocol> 
-@end
-
-@implementation MyObject
-+ (bycopy id<MyProtocol>) bycopyMethod
-{
-  return [MyObject alloc];
-}
-@end
-
-int main (void)
-{
-  MyObject *object;
-
-  object = [MyObject bycopyMethod];
-
-   exit (0);
-}
-
-