mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
[java-highlighting] IDEA-316141 incorrect resolving static reference to static method in interfaces
GitOrigin-RevId: d558946ecb71dd2edb475d96508b1965a1036d9a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aec2d04db5
commit
899e5292e5
@@ -0,0 +1,8 @@
|
||||
package sample;
|
||||
|
||||
import static sample.Lambda1.lambda;
|
||||
class Sample {
|
||||
public static void main(String[] args) {
|
||||
lambda();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package sample;
|
||||
|
||||
import static sample.Lambda2.<error descr="Cannot resolve symbol 'lambda'">lambda</error>;
|
||||
class Sample {
|
||||
public static void main(String[] args) {
|
||||
<error descr="Cannot resolve method 'lambda' in 'Sample'">lambda</error>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user