mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
13 lines
189 B
Java
13 lines
189 B
Java
/* /nodynamiccopyright/ */
|
|
|
|
package two;
|
|
|
|
interface I {
|
|
int i = 11;
|
|
}
|
|
|
|
public class Child2 extends one.Parent2 implements I {
|
|
void method() {
|
|
System.out.println(i);
|
|
}
|
|
}
|