0671fd9aaa
#KT-25038 fixed
8 lines
259 B
Plaintext
Vendored
8 lines
259 B
Plaintext
Vendored
// REPL_MODE: true
|
|
|
|
val (foo, bar) = 1 to "2"
|
|
foo // RESULT: res1: kotlin.Int = 1
|
|
bar // RESULT: res2: kotlin.String = 2
|
|
val (_, baz) = 3 to "4"
|
|
baz // RESULT: res4: kotlin.String = 4
|