jdk-24/test/langtools/tools/javac/NonAmbiguousField/two/Child2.java
2017-09-12 19:03:39 +02:00

14 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);
}
}