[FIR] Don't store class functions in local scope

This commit is contained in:
Mikhail Glukhikh
2020-04-08 17:26:29 +03:00
parent 19d0d42b9e
commit 14731527ed
6 changed files with 9 additions and 11 deletions
@@ -71,7 +71,7 @@ FILE: first.kt
private final fun bar(): R|kotlin/Unit|
public[local] final fun baz(): R|kotlin/Unit| {
R|/Local.bar|()
this@R|/Local|.R|/Local.bar|()
this@R|/Local|.R|/Local.Inner.Inner|()
}
@@ -81,7 +81,7 @@ FILE: first.kt
}
public[local] final fun foo(): R|kotlin/Unit| {
R|/Local.bar|()
this@R|/Local|.R|/Local.bar|()
}
}