]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/class_self-1.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / class_self-1.m
diff --git a/gcc/testsuite/objc/execute/class_self-1.m b/gcc/testsuite/objc/execute/class_self-1.m
deleted file mode 100644 (file)
index 4d42516..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/* Contributed by Nicola Pero - Fri Oct 26 22:39:32 BST 2001 */
-#include <objc/objc.h>
-
-/* Test calling a class method when there is an instance method 
-   with conflicting types */
-
-/* This class should be unused but on broken compilers its instance
-   method might get picked up and used instead of the class method of
-   another class ! */
-struct d
-{
-  int a;
-};
-
-@interface UnusedClass
-{
-  Class isa;
-}
-- (struct d) method;
-@end
-
-@implementation UnusedClass
-- (struct d) method
-{
-  struct d u;
-  u.a = 0;
-  
-  return u;
-}
-@end
-
-/* The real class */
-@interface TestClass
-{
-  Class isa;
-}
-+ (void) test;
-+ (int) method;
-@end
-
-@implementation TestClass
-+ (void) test
-{
-  if ([self method] != 4)
-    {
-      abort ();
-    }
-}
-
-+ (int) method
-{
-  return 4;
-}
-@end
-
-
-int main (void)
-{
-  [TestClass test];
-
-  return 0;
-}