0396df8ac4
* testsuite/libjava.compile/PR16675.java: New file. From-SVN: r91655
14 lines
284 B
Java
14 lines
284 B
Java
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) { };
|
|
}
|
|
|
|
}
|