Skip to content

Commit

Permalink
Add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Clyybber committed Feb 2, 2020
1 parent 0b96aa7 commit b28c316
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions tests/closure/tcapture.nim
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
discard """
output: '''
to be, or not to be'''
to be, or not to be
(v: 1)
(v: 1)
'''
joinable: false
"""

Expand All @@ -9,4 +12,15 @@ import sequtils, sugar
let m = @[proc (s: string): string = "to " & s, proc (s: string): string = "not to " & s]
var l = m.mapIt(capture([it], proc (s: string): string = it(s)))
let r = l.mapIt(it("be"))
echo r[0] & ", or " & r[1]
echo r[0] & ", or " & r[1]

type O = object
v: int
var o = O(v: 1)
var execute: proc()
capture [o]:
execute = proc() =
echo o
execute()
o.v = -1
execute()

0 comments on commit b28c316

Please sign in to comment.