Commit 0b3f0ff8 by Tom Tromey Committed by Tom Tromey

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
parent db14c6a0
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> 2000-03-07 Bryce McKinlay <bryce@albatross.co.nz>
Test for PR gcj/163: Test for PR gcj/163:
......
interface I interface I
{ {
int i = 1, ii = Test.out ("ii", 2); int i = 1, ii = PR162.out ("ii", 2);
} }
interface J extends I 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 interface K extends J
{ {
int k = Test.out ("k", 5); int k = PR162.out ("k", 5);
} }
public class PR162 public class PR162
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment