[java-highlighting] IDEA-308514 Incorrect Java error highlighting when accessing private method of var local variable

GitOrigin-RevId: 29c869bc79161b6adf24f0090ee591cb9abc1c6b
This commit is contained in:
Mikhail Pyltsin
2023-07-20 15:30:26 +02:00
committed by intellij-monorepo-bot
parent 7a5fc9111f
commit b65d25e4eb
3 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
public class VarCaptureForLoop {
private void foo() {}
public void bar(Iterable<? extends VarCaptureForLoop> data) {
for (var it : data) it.foo();
}
}