mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
* Fix #11684 For loops over a hardcoded empty array crash the compiler * Update t19224.nim
13 lines
256 B
Nim
13 lines
256 B
Nim
discard """
|
|
cmd: "nim check --hints:off $file"
|
|
errormsg: ""
|
|
nimout: '''
|
|
t19224.nim(10, 10) Error: cannot infer element type of items([])
|
|
t19224.nim(12, 10) Error: cannot infer element type of items(@[])
|
|
'''
|
|
"""
|
|
|
|
for _ in []: discard
|
|
|
|
for _ in @[]: discard
|