1 2 3 4 5 6 7 8 9 10 11 12 13
public class PR16675 { public PR16675(Object obj) { } public void someTestMethod() { // gcj crashed compiling this, as `null' had type `void*'. new PR16675(null) { }; } public void someTestMethod2() { new PR16675((Object) null) { }; } }