Lines Matching refs:privateInterface
27 private interface privateInterface { }
180 class ExtendsAccess314 extends ExtendsAccess implements privateInterface { } // ERROR - 'privateInterface' not in scope
186 implements ExtendsAccess.privateInterface { } // ERROR - cannot access 'privateInterface'
195 implements p.ExtendsAccess.privateInterface { } // ERROR - cannot access 'privateInterface'
207 class N implements privateInterface { } // ERROR - cannot access 'privateInterface'
220 class N implements privateInterface { } // ERROR - cannot access 'privateInterface'
236 class N implements ExtendsAccess.privateInterface { } // ERROR - cannot access 'privateInterface'
252 class N implements p.ExtendsAccess.privateInterface { } // ERROR - cannot access 'privateInterface'