fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / 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();