From: bryce Date: Mon, 8 Jan 2001 02:13:32 +0000 (+0000) Subject: * libjava.compile/SuperConstr.java: New test case. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=751cb6fa8413854d208ba3f67d49d73edeb4c7a1;p=thirdparty%2Fgcc.git * libjava.compile/SuperConstr.java: New test case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38793 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog index 15c61dd0263e..6f3ca8d01a5a 100644 --- a/libjava/testsuite/ChangeLog +++ b/libjava/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2001-01-08 Bryce McKinlay + + * libjava.compile/SuperConstr.java: New test case. + 2000-12-18 Tom Tromey * 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 000000000000..eef505081094 --- /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); + } + } +}