OSDN Git Service

* libjava.lang/pr83.xfail: Removed.
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / PR224.java
1 // File PrivateInnerInterface.java
2
3 public class PR224 {
4     private interface Inter {}
5 }
6
7
8 class PrivateInnerInterface_Test extends PR224 {
9     void foo() {
10         // Implement the interface with an innerclass
11         Inter i = new Inter() { } ;
12     }
13 }
14
15 // This should fail to compile because Inter is private in the superclass
16