]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/SuperConstr.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / SuperConstr.java
diff --git a/libjava/testsuite/libjava.compile/SuperConstr.java b/libjava/testsuite/libjava.compile/SuperConstr.java
deleted file mode 100644 (file)
index eef5050..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// It is legal to reference "this" from an enclosing type, or an instance 
-// field from an enclosing type, in a super constructor call.
-
-public class SuperConstr
-{
-  SuperConstr (Object x, Outer y) {}
-}
-
-class Outer
-{
-  Object x;
-  
-  class Sub extends SuperConstr
-  {
-    Sub()
-    {
-      super(x, Outer.this);
-    }
-  }
-}