Closed Bike closed 5 years ago
Pointed out by karlosz based on an ansi test:
(let ((x 'bad)) (declare (special x)) (flet ((%f () x)) (flet ((%g (&aux (x 'good)) (declare (special x)) (%f))) (%g)))))
Should return GOOD, but with CST-to-AST it seems to return BAD.
Pointed out by karlosz based on an ansi test:
Should return GOOD, but with CST-to-AST it seems to return BAD.