1 package test5;
2 
3 interface JIRA250BarI {
foo()4     int foo();
5 }
6 
7 class JIRA250Bar implements JIRA250BarI {
foo()8     public int foo() { return 1; }
9 }
10 
11 interface JIRA250SuperI {
getBar()12     JIRA250BarI getBar();
13 }
14 
15 public class JIRA250Super extends JIRA250Super2 implements JIRA250SuperI {
16 }
17 
18