• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package testproxy;
2 
3 interface Target4Super {
foo4()4     int foo4();
5 }
6 
7 public interface Target4 extends Target4Super {
bar4()8     int bar4();
9 }
10