blob: 7202532bc70bc02cbb635e4c9f676b65f631f7a6 [file] [log] [blame]
/* /nodynamiccopyright/ */
package two;
interface I {
int i = 11;
}
public class Child2 extends one.Parent2 implements I {
void method() {
System.out.println(i);
}
}