mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 23:50:57 +07:00
12 lines
218 B
Java
12 lines
218 B
Java
class Foo {
|
|
public void foo() {}
|
|
|
|
public static void foo(String... s){}
|
|
}
|
|
|
|
class A {
|
|
{
|
|
Foo.<error descr="Non-static method 'foo()' cannot be referenced from a static context">foo</error>();
|
|
}
|
|
}
|