7 lines
75 B
Kotlin
Vendored
7 lines
75 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
fun main() {
|
|
val (a: Any, _) = 1 to 2
|
|
println(a)
|
|
}
|