Files
kotlin/compiler/testData/codegen/boxInline/special/stackHeightBug.kt
2016-02-27 15:40:05 +03: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"
}