Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2014571 | 1.2.0 | Sheng Liang | P4 | Closed | Fixed | 1.2alpha2 |
Name: sgC58550 Date: 03/19/97
public class TestBug {
static String msg = null;
static {
Object o = null;
o.toString();
msg = "Bug Fixed";
}
public String toString () {
if (msg == null)
return super.toString() + "Bug Not Fixed";
else
return super.toString() + "Bug Fixed";
}
public static void main (String args[])
{
TestBug t = new TestBug();
System.out.println(t.toString());
}
}
company - WorldStreet Corporation , email - ###@###.###
======================================================================
- backported by
-
JDK-2014571 Runtime exception in static initializer does not report errors
-
- Closed
-