mirror of
https://github.com/nim-lang/Nim.git
synced 2026-09-17 18:44:53 +00:00
12 lines
369 B
Nim
12 lines
369 B
Nim
# Helper for tnestasgn.nim: a `sink`-param routine containing a nested proc
|
|
# whose ENTIRE body is a single assignment, so the body node is a bare `nkAsgn`
|
|
# rather than an `nkStmtList` — the shape that used to be deferred behind a
|
|
# childless placeholder of that same kind.
|
|
|
|
proc consume*(s: sink string) =
|
|
var x = ""
|
|
proc setIt() =
|
|
x = s
|
|
setIt()
|
|
echo x
|