]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/static-2.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / static-2.m
diff --git a/gcc/testsuite/objc/execute/static-2.m b/gcc/testsuite/objc/execute/static-2.m
deleted file mode 100644 (file)
index 52a03a8..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
-#include <objc/objc.h>
-
-/* Test defining a static function *inside* a class implementation */
-
-@interface Test
-{
-  Class isa;
-}
-+ (int) test;
-@end
-
-@implementation        Test
-
-static int test (void)
-{
-  return 1;
-}
-
-+ (int) test
-{
-  return test ();
-}
-
-@end
-
-int main (void)
-{
-  if ([Test test] != 1)
-    {
-      abort ();
-    }
-
-  return 0;
-}
-
-