re GNATS gcj/162 (gcj does not initialize interfaces according to spec)

* libjava.lang/PR162.java: Mention `PR162', not `Test', as class
	name.

From-SVN: r32408
This commit is contained in:
Tom Tromey 2000-03-08 05:42:07 +00:00 committed by Tom Tromey
parent db14c6a02a
commit 0b3f0ff85e
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-03-07 Tom Tromey <tromey@cygnus.com>
* libjava.lang/PR162.java: Mention `PR162', not `Test', as class
name.
2000-03-07 Bryce McKinlay <bryce@albatross.co.nz>
Test for PR gcj/163:

View File

@ -1,16 +1,16 @@
interface I
{
int i = 1, ii = Test.out ("ii", 2);
int i = 1, ii = PR162.out ("ii", 2);
}
interface J extends I
{
int j = Test.out ("j", 3), jj = Test.out ("jj", 4);
int j = PR162.out ("j", 3), jj = PR162.out ("jj", 4);
}
interface K extends J
{
int k = Test.out ("k", 5);
int k = PR162.out ("k", 5);
}
public class PR162