changes
authorbdemsky <bdemsky>
Wed, 5 Oct 2011 17:44:18 +0000 (17:44 +0000)
committerbdemsky <bdemsky>
Wed, 5 Oct 2011 17:44:18 +0000 (17:44 +0000)
Robust/src/Tests/inner.java
Robust/src/Tests/innerp.java [new file with mode: 0644]

index 6d54617ad2ed7bdec7f1c0ec1991deb27287256d..5e88df9e21a31d89e8ef649750cd265fed07e034 100644 (file)
@@ -1,7 +1,11 @@
-public class inner {
+public class inner extends innerp {
   int outer;
   int f2;
 
+  public inner() {
+    super.outer=31;
+  }
+
   public static void main(String x[]) {
     inner i=new inner();
     i.dotest();
@@ -29,6 +33,7 @@ public class inner {
       System.out.println(outer);
       System.out.println(super.outer);
       System.out.println(inner.this.outer);
+      System.out.println(inner.super.outer);
       System.out.println(f1);
       System.out.println(f2);
       System.out.println(f3);
diff --git a/Robust/src/Tests/innerp.java b/Robust/src/Tests/innerp.java
new file mode 100644 (file)
index 0000000..2ccfbdd
--- /dev/null
@@ -0,0 +1,4 @@
+public class innerp {
+  int outer;
+
+}
\ No newline at end of file