2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.compile / InnerExcept.java
blobdf4b62893e28da94939b6f53109ec4b48ef425ec
1 import java.io.*;
3 // Test case for http://gcc.gnu.org/PR12866
4 // From Mark Wielaard
5 public class InnerExcept
7 static private void createFile() throws IOException
9 new File("/dev/null");
12 class Inner
14 private void m() throws IOException
16 createFile();