This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Bug in bytecode compiler 3.3
- From: "Erik Poupaert" <erik dot poupaert at chello dot be>
- To: <java at gcc dot gnu dot org>
- Date: Sat, 22 Feb 2003 11:43:03 +0100
- Subject: Bug in bytecode compiler 3.3
Can anybody try to reproduce this problem on his platform in 3.3 by
compiling the following example to bytecode (-C) while it is located in a
folder with same name as the class name:
package mytest;
public class MyTest
{
String errorMsg;
public void fatalError(ExceptionX e)
{
errorMsg = e.toString ();
}
}
class ExceptionX extends Exception {}
If it can be confirmed I'll file a trouble ticket for it.
It is really newly introduced in 3.3, because the 3.2 bytecode compiler has
no problem with it. I can probably upgrade to 3.3, but then I need to revert
to for example jikes for bytecode compilation.