Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt6434_2.kt
T
2019-11-19 11:00:09 +03:00

12 lines
166 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
fun box(): String {
val p = 1 to 1
val (e, num) = p
val a = 1f
return "OK"
}