Commit 1b64e33f by Jeff Sturm Committed by Jeff Sturm

* libjava.compile/InnerExcept.java: New File.

From-SVN: r73240
parent 63069342
2003-11-03 Jeff Sturm <jsturm@one-point.com>
PR java/12866:
* libjava.compile/InnerExcept.java: New File.
2003-10-22 Tom Tromey <tromey@redhat.com> 2003-10-22 Tom Tromey <tromey@redhat.com>
PR libgcj/12416: PR libgcj/12416:
......
import java.io.*;
// Test case for http://gcc.gnu.org/PR12866
// From Mark Wielaard
public class InnerExcept
{
static private void createFile() throws IOException
{
new File("/dev/null");
}
class Inner
{
private void m() throws IOException
{
createFile();
}
}
}
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