Merge commit 'feccd2d3100fd2964d4c2df58ab3da7ce4949a66' into vm-check
[bpt/guile.git] / testsuite / t-closure.scm
1 (define func
2 (let ((x 2))
3 (lambda ()
4 (let ((x++ (+ 1 x)))
5 (set! x x++)
6 x++))))
7
8 (list (func) (func) (func))