mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
[java-highlighting] IDEA-308514 Incorrect Java error highlighting when accessing private method of var local variable
GitOrigin-RevId: 29c869bc79161b6adf24f0090ee591cb9abc1c6b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7a5fc9111f
commit
b65d25e4eb
@@ -0,0 +1,6 @@
|
||||
public class VarCaptureForLoop {
|
||||
private void foo() {}
|
||||
public void bar(Iterable<? extends VarCaptureForLoop> data) {
|
||||
for (var it : data) it.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user