mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
20 lines
271 B
Java
20 lines
271 B
Java
public class InterfaceConflict9{
|
|
public interface A{
|
|
int a = 0;
|
|
}
|
|
|
|
public interface B{
|
|
int a = 0;
|
|
}
|
|
|
|
public interface C{
|
|
int a = 0;
|
|
}
|
|
|
|
public static class D
|
|
implements A, B, C{
|
|
void foo(){
|
|
System.out.println("" + <ref>a);
|
|
}
|
|
}
|
|
} |