JVM_IR: synchronize code generation for inline functions

This commit is contained in:
Georgy Bronnikov
2020-11-23 17:06:21 +03:00
parent c7feaee8ae
commit 3a10ea4f88
11 changed files with 93 additions and 34 deletions
+11
View File
@@ -0,0 +1,11 @@
// FILE: A.kt
inline fun a(): String = b2()
// FILE: B.kt
inline fun b1(): String = a()
inline fun b2(): String = "OK"
fun box() = b1()