Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/inlineOnly/noSmap.kt
T
2021-02-02 17:53:53 +03:00

14 lines
156 B
Kotlin
Vendored

// WITH_RUNTIME
// FILE: 1.kt
// KJS_WITH_FULL_RUNTIME
package test
inline fun stub() {
}
// FILE: 2.kt
fun box(): String {
return "KO".reversed()
}