* src/objcodes.c (make_objcode_by_mmap): Fixed the error type when the
[bpt/guile.git] / testsuite / t-closure.scm
1 (let ((x 2))
2 (lambda ()
3 (let ((x++ (+ 1 x)))
4 (set! x x++)
5 x++)))