mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
13 lines
138 B
Java
13 lines
138 B
Java
class Client {
|
|
int foo(){
|
|
return A.<ref>FIELD;
|
|
}
|
|
}
|
|
|
|
class A implements I{
|
|
}
|
|
|
|
interface I {
|
|
public static final int FIELD = 1;
|
|
}
|