summary refs log tree commit diff stats
path: root/tests/iter/t22548.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/iter/t22548.nim')
-rw-r--r--tests/iter/t22548.nim21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/iter/t22548.nim b/tests/iter/t22548.nim
new file mode 100644
index 000000000..b9abb75d0
--- /dev/null
+++ b/tests/iter/t22548.nim
@@ -0,0 +1,21 @@
+discard """
+  action: compile
+"""
+
+type Xxx[T] = object
+
+iterator x(v: string): char =
+  var v2: Xxx[int]
+
+  var y: v2.T
+
+  echo y
+
+proc bbb(vv: string): proc () =
+  proc xxx() =
+    for c in x(vv):
+      echo c
+
+  return xxx
+
+bbb("test")()