// File PrivateInnerInterface.javapublic class PR224 {private interface Inter {}}class PrivateInnerInterface_Test extends PR224 {voidfoo() {// Implement the interface with an innerclass
Inter i =newInter() { } ;}}// This should fail to compile because Inter is private in the superclass