Dead
[official-gcc.git] / gomp-20050608-branch / libjava / testsuite / libjava.compile / PR16675.java
blob11e6d4bb6bc4b391ce0680a57266a5927a857512
1 public class PR16675 {
2 public PR16675(Object obj) { }
4 public void someTestMethod() {
5 // gcj crashed compiling this, as `null' had type `void*'.
6 new PR16675(null) { };
9 public void someTestMethod2() {
10 new PR16675((Object) null) { };