mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
16 lines
224 B
Java
16 lines
224 B
Java
public class InterfaceConflict1{
|
|
public interface A{
|
|
int a = 0;
|
|
}
|
|
|
|
public interface B{
|
|
int a = 0;
|
|
}
|
|
|
|
public static class C
|
|
implements A, B{
|
|
static{
|
|
System.out.println("" + <caret>a);
|
|
}
|
|
}
|
|
} |