Files
Nim/tests/generics/t26124.nim
ringabout dc242e9027 fixes #26124; internal error: expr: param not init with nested generic procs (#26131)
fixes #26124

The fix preserves the resolved static value, allowing constant folding.

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
2026-08-26 08:40:57 +02:00

8 lines
94 B
Nim

proc u(k: static int) =
proc r(_: static int) =
while k > 0:
discard
r(0)
u(0)