IDEA-211449 IDEA is unable to find lambda implementations when invoked on library class source

GitOrigin-RevId: 8fd904e0dae62c5b15f9b85fe2086860bf89b4d0
This commit is contained in:
peter
2019-04-28 17:13:28 +03:00
committed by intellij-monorepo-bot
parent 3349d62588
commit 28a5a5765f
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,7 @@
class C {
void m(Foo f) {}
{
m(() -> {});
}
}