Files
Nim/tests/range/t19678.nim
Bung cbd9fee22a fix #19678 Broken behavior with string ranges in case labels (#20475)
* fix #19678 Broken behavior with string ranges in case labels

* Update compiler/semtypes.nim

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
2022-10-01 18:17:07 +02:00

18 lines
203 B
Nim

discard """
cmd: "nim check --hints:off $file"
errormsg: ""
nimout: '''
t19678.nim(13, 13) Error: range of string is invalid
'''
"""
case "5":
of "0" .. "9":
discard
else:
discard