]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/nested-3.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / nested-3.m
diff --git a/gcc/testsuite/objc/execute/nested-3.m b/gcc/testsuite/objc/execute/nested-3.m
deleted file mode 100644 (file)
index 94271c4..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 nested function inside a method */
-
-@interface Test
-{
-  Class isa;
-}
-+ (int) test;
-@end
-
-@implementation        Test
-
-+ (int) test
-{
-  int test (void)
-    {
-      return 1;
-    }
-  
-  return test ();
-}
-
-@end
-
-int main (void)
-{
-  if ([Test test] != 1)
-    {
-      abort ();
-    }
-
-  return 0;
-}
-
-