aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@albatross.co.nz>2001-01-08 02:13:32 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2001-01-08 02:13:32 +0000
commit4fd297757d05e95e21ab9b39ba99d8592454e2e6 (patch)
treed1489ac00984102cdae86f89d2fed3e2a30dd491 /libjava/testsuite
parent0c58da3ed06415bce7a2cc636b9c8343237c8736 (diff)
downloadgcc-4fd297757d05e95e21ab9b39ba99d8592454e2e6.zip
gcc-4fd297757d05e95e21ab9b39ba99d8592454e2e6.tar.gz
gcc-4fd297757d05e95e21ab9b39ba99d8592454e2e6.tar.bz2
* libjava.compile/SuperConstr.java: New test case.
From-SVN: r38793
Diffstat (limited to 'libjava/testsuite')
-rw-r--r--libjava/testsuite/ChangeLog4
-rw-r--r--libjava/testsuite/libjava.compile/SuperConstr.java20
2 files changed, 24 insertions, 0 deletions
diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog
index 15c61dd..6f3ca8d 100644
--- a/libjava/testsuite/ChangeLog
+++ b/libjava/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-08 Bryce McKinlay <bryce@albatross.co.nz>
+
+ * libjava.compile/SuperConstr.java: New test case.
+
2000-12-18 Tom Tromey <tromey@redhat.com>
* libjava.mauve/mauve.exp (test_mauve): Don't look for exceptions
diff --git a/libjava/testsuite/libjava.compile/SuperConstr.java b/libjava/testsuite/libjava.compile/SuperConstr.java
new file mode 100644
index 0000000..eef5050
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/SuperConstr.java
@@ -0,0 +1,20 @@
+// 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);
+ }
+ }
+}