Make the compiler to support super.X/L.super.X which access super class' fields....
[IRC.git] / Robust / src / Tests / inner.java
index ca5b94e8c4515a51146ccbce29c0ff03dcd0cc4b..6000c3e385a852ef33b674f6ab2a5a38ed52e808 100644 (file)
@@ -38,6 +38,9 @@ public class inner extends innerp {
       System.out.println("\t Inner class print: ");
       System.out.println(outer);
       System.out.println(super.outer);
+      t.super.outer = 1;
+      System.out.println(outer);
+      System.out.println(t.super.outer);
       System.out.println(inner.this.outer);
       System.out.println(inner.super.outer);
       System.out.println(f1);