Commit f192590a by Bryce McKinlay Committed by Bryce McKinlay

re GNATS gcj/242 (Compiler generates call to wrong method from inner class)

2000-05-29  Bryce McKinlay  <bryce@albatross.co.nz>

	* libjava.lang/PR242.java: New file. PR gcj/242.

From-SVN: r34245
parent 37c67319
2000-05-29 Bryce McKinlay <bryce@albatross.co.nz>
* libjava.lang/PR242.java: New file. PR gcj/242.
2000-05-23 Tom Tromey <tromey@cygnus.com>
* libjava.compile/PR238.java: New file. For PR gcj/238.
......
class Base
{
int someNum()
{
System.out.println ("ok");
return 0;
}
}
public class PR242 extends Base
{
public static void main(String args[])
{
new PR242();
}
PR242()
{
new Inner().a();
}
class Inner
{
public int dummy()
{
System.out.println ("wrong method called!!");
return -1;
}
public void a()
{
System.out.println ("...");
System.out.println (someNum());
}
}
}
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