mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 13:07:48 +00:00
Add back error message to tprevent_forloopvar_mutations (#20992)
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
discard """
|
||||
errormsg: "type mismatch: got <int>"
|
||||
nimout: '''tprevent_forloopvar_mutations.nim(16, 7) Error: type mismatch: got <int>
|
||||
but expected one of:
|
||||
proc inc[T, V: Ordinal](x: var T; y: V = 1)
|
||||
first type mismatch at position: 1
|
||||
required type for x: var T: Ordinal
|
||||
but expression 'i' is immutable, not 'var'
|
||||
|
||||
expression: inc i
|
||||
'''
|
||||
"""
|
||||
|
||||
for i in 0..10:
|
||||
|
||||
Reference in New Issue
Block a user