1 package p;
2 interface I{
k()3 void k();
4 }
5 interface I2 extends I{
6 }
7 interface I3 extends I2{
k()8 void k();
9 }