mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline method: don't ignore super expression conflict if containing class inherits target but the call is located inside static context (IDEA-152173)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class A {
|
||||
void bar() {}
|
||||
}
|
||||
|
||||
class B extends A {
|
||||
void foo() {
|
||||
super.bar();
|
||||
}
|
||||
|
||||
void err() {
|
||||
fo<caret>o();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user