]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.lang/update_outer.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.lang / update_outer.java
diff --git a/libjava/testsuite/libjava.lang/update_outer.java b/libjava/testsuite/libjava.lang/update_outer.java
deleted file mode 100644 (file)
index b2e8437..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Class update_outer
-// Generated on Thu Nov 18 21:37:21 UTC 1999
-//
-
-class update_outer {
-
-  private String foo;
-
-  class update_outer_inner {
-    void test () {
-      foo += " M$";
-      System.out.println ("foo=`"+foo+"'");
-    }
-
-
-  }
-  void foo ()
-  {
-    foo = "780";
-    update_outer_inner inn = this.new update_outer_inner ();
-    inn.test ();
-  }  
-  public static void main (String[] arg)
-  {
-    System.out.println ("Testing class `update_outer'...");
-    new update_outer().foo ();
-  }
-}