mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 14:01:44 +07:00
method refs: accept 2 phase acceptance (static and receiver based), raise 'staticAccess' errors at highlighting level
This commit is contained in:
@@ -10,7 +10,7 @@ class Test {
|
||||
static abstract class Child extends Parent {
|
||||
abstract int foo() ;
|
||||
void test() {
|
||||
I s = super::<error descr="Abstract method 'foo' cannot be accessed directly">foo</error>;
|
||||
I s = <error descr="Abstract method 'foo' cannot be accessed directly">super::foo</error>;
|
||||
I s1 = this::foo;
|
||||
|
||||
Parent sup = null;
|
||||
|
||||
Reference in New Issue
Block a user