Files
kotlin/compiler/testData/repl/controlFlow/mutateVal.repl
Alexander Udalov 26e3d2cf5d Use TopLevelDeclarations analysis mode in REPL
#KT-12564 Fixed
2017-06-06 14:00:45 +03:00

12 lines
118 B
Plaintext
Vendored

>>> val x = 1
>>> x = 2
error: val cannot be reassigned
x = 2
^
>>> x++
error: val cannot be reassigned
x++
^
>>> x
1