mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
4 lines
183 B
Java
4 lines
183 B
Java
class A{
|
|
void foo(String s){}
|
|
static void foo(Object s){<error descr="Non-static method 'foo(java.lang.String)' cannot be referenced from a static context">foo</error>("");}
|
|
} |