[FIR] Fix lambda resolve in independent context

This commit is contained in:
Mikhail Glukhikh
2020-02-04 10:14:34 +03:00
parent 4f8d0382f7
commit 64c7ab1302
19 changed files with 75 additions and 62 deletions
@@ -3,8 +3,8 @@ interface Your
class My {
internal val x = object : Your {}
internal fun foo() = <!UNRESOLVED_REFERENCE!>{
internal fun foo() = {
class Local
Local()
}()<!>
}()
}
@@ -5,8 +5,8 @@ class My {
private val x = object : Your {}
// private from local: ???
private fun foo() = <!UNRESOLVED_REFERENCE!>{
private fun foo() = {
class Local
Local()
}()<!>
}()
}