summary refs log tree commit diff stats
path: root/tests/iter/titer4.nim
blob: 912883a6323b7df7182ffb7578ab5281b28daf63 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "iterator within for loop context expected"
  file: "titer4.nim"
  line: 7
"""
# implicit items/pairs, but not if we have 3 for loop vars:
for x, y, z in {'a'..'z'}: #ERROR_MSG iterator within for loop context expected
  nil