mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-27 17:11:40 +00:00
15 lines
175 B
Nim
15 lines
175 B
Nim
discard """
|
|
errormsg: "'x' cannot be assigned to"
|
|
line: 10
|
|
"""
|
|
|
|
proc bug14498 =
|
|
var a = @['a', 'b', 'c', 'd', 'e', 'f']
|
|
|
|
for x in a:
|
|
x = 'c'
|
|
|
|
echo a
|
|
|
|
bug14498()
|