mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
16 lines
313 B
Java
16 lines
313 B
Java
/** @noinspection UnusedDeclaration*/
|
|
interface I<T> {
|
|
String SSS = "SSS";
|
|
}
|
|
|
|
interface II<T> extends I<T> {}
|
|
|
|
class A implements I {}
|
|
|
|
/** @noinspection UnusedDeclaration*/
|
|
class AA extends A implements II {
|
|
public static void f() {
|
|
String s = <ref>SSS; //this is not ambigous reference
|
|
}
|
|
}
|