Fixed a Scheme translation bug; cleaned compilation with GCC 4.
[bpt/guile.git] / testsuite / t-closure.scm
CommitLineData
b6368dbb
LC
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))