Hey all,

I noticed that the following program fails to run, but only after its been
compiled (on 6.7, 6.6 and earlier don't seem to have this issue):

https://gist.github.com/LeifAndersen/dfad9a8f55ef671e4f3aa41b321ef7bf

#lang racket/base ;; ill-formed.rkt
(define ill
  (let ((base (string-append "a")))
    (λ () base)))
(ill)

To get the error, run:

$ raco make ill-formed.rkt
$ racket ill-formed.rkt
?? 0
compiled/ill-formed_rkt.zo::369: read (compiled): ill-formed code
[../../../racket/gc2/../src/validate.c:1426]
  context...:
   standard-module-name-resolver

This error doesn't seem to happen if `string-append` is replaced with
various other functions that create strings (or just string literals), and
it seems to go away if the function is inlined.

I'm not entirely sure what's causing this bug yet, but it appears to either
be a bug in the versifier, or a new optimization. Has anyone else seen
something like this recently? (If not I'll update the list once I get a
sense as to what is going on.)

~Leif Andersen

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-dev/CAAVaeEALnMHEinQPvekb1jpLy0jYOdZGgbYnL0UaXzhS5Ob5xw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to