summary refs log tree commit diff stats
path: root/tests/iter/titerassignerr.nim
blob: caa56c4ad2e42ea3cf0a3e09ee9854fc06be10b9 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "inline iterators are not first-class / cannot be assigned to variables"
  line: 8
"""

iterator foo: int =
  yield 2
let x = foo