Commit 0396df8a by Tom Tromey Committed by Tom Tromey

For PR java/16675:

	* testsuite/libjava.compile/PR16675.java: New file.

From-SVN: r91655
parent e5410ba7
2004-12-02 Tom Tromey <tromey@redhat.com>
For PR java/16675:
* testsuite/libjava.compile/PR16675.java: New file.
2004-12-02 Richard Sandiford <rsandifo@redhat.com>
* configure.ac: Use TL_AC_GCC_VERSION to set gcc_version.
......
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) { };
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment