Merge commit '40a723a92236fe4e58feb89057b4182b1fc76810'
[bpt/guile.git] / test-suite / vm / 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))