`tmp` does not need to be alpha-renamed in this case.
This commit is contained in:
pedagand 2019-01-02 10:28:31 +01:00 committed by Matthew Flatt
parent d8eb9640ec
commit cb8fde7a9e

View File

@ -120,9 +120,9 @@ the expansion is
@racketblock[
(let ([set!_1 5]
[other 6])
(let ([tmp_1 set!_1])
(let ([tmp set!_1])
(set! set!_1 other)
(set! other tmp_1))
(set! other tmp))
(list set!_1 other))
]