mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
find class or interface to search the method: stop when accessible method is found even with static problem (IDEA-169504)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Foo {
|
||||
static class Bar {
|
||||
static final String s = <error descr="Non-static method 'toString()' cannot be referenced from a static context">toString</error>(1);
|
||||
}
|
||||
static String toString(int x) {
|
||||
return x + "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user