Files
kotlin-fork/idea/scripting-support/testData/scratch/destructuringDecls.comp.after
T
2020-12-21 09:43:44 +01:00

7 lines
272 B
Plaintext
Vendored

// REPL_MODE: false
val (foo, bar) = 1 to "2" // RESULT: val foo: Int; val bar: String
foo // RESULT: 1
bar // RESULT: 2
val (_, baz) = 3 to "4" // RESULT: val baz: String
baz // RESULT: 4