make FunctionCodegen skip method bodies we don't need, which avoids problems with inlining methods inside methods we don't need

KT-33604
This commit is contained in:
Kevin Bierhoff
2019-10-16 13:23:57 -07:00
committed by Alexey Tsvetkov
parent b10f47b50e
commit 0285b26e40
5 changed files with 25 additions and 17 deletions
@@ -0,0 +1,7 @@
package app
import lib.*
fun runAppAndReturnOk(): String {
return inlineCapture("OK")
}