aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/InnerExcept.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite/libjava.compile/InnerExcept.java')
-rw-r--r--libjava/testsuite/libjava.compile/InnerExcept.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/libjava/testsuite/libjava.compile/InnerExcept.java b/libjava/testsuite/libjava.compile/InnerExcept.java
deleted file mode 100644
index df4b628..0000000
--- a/libjava/testsuite/libjava.compile/InnerExcept.java
+++ /dev/null
@@ -1,19 +0,0 @@
-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();
- }
- }
-}