Files
kotlin/compiler/testData/codegen/boxInline/special/stackHeightBug.kt
2018-08-02 13:19:24 +02:00

20 lines
235 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun <R> mfun(f: () -> R) {
f()
f()
}
public inline fun String.toLowerCase2() : String = ""
// FILE: 2.kt
import test.*
fun box(): String {
mfun{ "".toLowerCase2() }
return "OK"
}