14 lines
189 B
Java
Raw Normal View History

/* /nodynamiccopyright/ */
2007-12-01 00:00:00 +00:00
package two;
interface I {
int i = 11;
}
public class Child2 extends one.Parent2 implements I {
void method() {
System.out.println(i);
2007-12-01 00:00:00 +00:00
}
}