Fixed a Scheme translation bug; cleaned compilation with GCC 4.
[bpt/guile.git] / testsuite / t-closure3.scm
CommitLineData
0b5f0e49
LC
1(define (stuff)
2 (let* ((x 2)
3 (chbouib (lambda (z)
4 (+ 7 z x))))
5 (chbouib 77)))
b6368dbb
LC
6
7(stuff)