mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
251 B
Java
11 lines
251 B
Java
public class Test {
|
|
interface I {
|
|
void foo();
|
|
}
|
|
|
|
private Object o;
|
|
|
|
public static void main(String[] args){
|
|
I i = <error descr="Non-static field 'o' cannot be referenced from a static context">o</error>::wait;
|
|
}
|
|
} |