mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
19 lines
265 B
Java
19 lines
265 B
Java
public class InterfaceConflict3{
|
|
public interface A{
|
|
int a = 0;
|
|
}
|
|
|
|
public interface B{
|
|
int a = 0;
|
|
}
|
|
|
|
public class E implements A{
|
|
}
|
|
|
|
public static class C extends E
|
|
implements B{
|
|
static{
|
|
System.out.println("" + <ref>a);
|
|
}
|
|
}
|
|
} |