Files
kotlin-fork/compiler/testData/codegen/boxInline/special/stackHeightBug.kt
T
2018-06-28 12:26:41 +02:00

21 lines
261 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// 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"
}