Files
kotlin/compiler/testData/repl/destructuringDeclaration.repl
Mikhail Zarechenskiy 47f2386212 Generate non-local destructuring declarations as properties
#KT-5620 Fixed
 #KT-15810 Fixed
2017-05-25 16:46:05 +03:00

6 lines
46 B
Plaintext
Vendored

>>> val (a, b) = listOf(1, 2)
>>> a
1
>>> b
2