[FIR] Hack-in indirectly nested locals resolution

This commit is contained in:
Simon Ogorodnik
2021-07-28 20:49:22 +03:00
committed by Mikhail Glukhikh
parent 7422571c72
commit 8e890eba3e
7 changed files with 63 additions and 1 deletions
@@ -0,0 +1,8 @@
fun foo() {
val base = object {
fun bar() = object {
fun buz() = foobar
}
val foobar = ""
}
}