26e3d2cf5d
#KT-12564 Fixed
12 lines
118 B
Plaintext
Vendored
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
|