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