fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / libjava / testsuite / libjava.compile / PR224.java
blobeae4032e1239b828d6efd7214d7716d4b69dff5e
1 // File PrivateInnerInterface.java
3 public class PR224 {
4 private interface Inter {}
8 class PrivateInnerInterface_Test extends PR224 {
9 void foo() {
10 // Implement the interface with an innerclass
11 Inter i = new Inter() { } ;
15 // This should fail to compile because Inter is private in the superclass