The program below complains that `x` is used before initialization. But if I change the linking order to `x@` before `y@`, it works fine. Is this an intended behavior or a bug? This is Racket v6.4.0.7
#lang racket (define-signature x^ (x)) (define-signature y^ (y)) (define-unit x@ (import) (export x^) (define x 42)) (define-unit y@ (import x^) (export y^) (define y x)) (define-values/invoke-unit/infer (link y@ x@)) -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.