aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR224.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR224.java')
-rw-r--r--libjava/testsuite/libjava.compile/PR224.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/libjava/testsuite/libjava.compile/PR224.java b/libjava/testsuite/libjava.compile/PR224.java
deleted file mode 100644
index eae4032e123..00000000000
--- a/libjava/testsuite/libjava.compile/PR224.java
+++ /dev/null
@@ -1,16 +0,0 @@
-// File PrivateInnerInterface.java
-
-public class PR224 {
- private interface Inter {}
-}
-
-
-class PrivateInnerInterface_Test extends PR224 {
- void foo() {
- // Implement the interface with an innerclass
- Inter i = new Inter() { } ;
- }
-}
-
-// This should fail to compile because Inter is private in the superclass
-