added a test to ensure that for-loop-variables cannot be mutated

This commit is contained in:
Araq
2018-08-28 12:16:14 +02:00
parent 96363ecaf3
commit dc5851e873

View File

@@ -0,0 +1,15 @@
discard """
line: 15
errmsg: "type mismatch: got <int>"
nimout: '''type mismatch: got <int>
but expected one of:
proc inc[T: Ordinal | uint | uint64](x: var T; y = 1)
for a 'var' type a variable needs to be passed, but 'i' is immutable
expression: inc i
'''
"""
for i in 0..10:
echo i
inc i