cb7156478 ^
1 2 3 4 5 6 7
proc f() = var s: seq[int] iterator a(): int = for x in s: yield x iterator b(): int = for x in a(): yield x