]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/PR224.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / PR224.java
diff --git a/libjava/testsuite/libjava.compile/PR224.java b/libjava/testsuite/libjava.compile/PR224.java
deleted file mode 100644 (file)
index eae4032..0000000
+++ /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
-