Closed SuzanneSoy closed 4 years ago
Here's another program with the same issue.
#lang racket
(module id typed/racket
(: id (-> (Vectorof Integer) (Vectorof Integer)))
(define (id x) x)
(provide id))
(require 'id)
id
Diagnosis: This happens whenever a require is lifted during pass 1 of the module-begin expansion.
Fixed by the recent update.
The macro debugger gives an error
Macro stepper error (steps)
on the following file:Here is the error message:
I attached the file generated by clicking on "dump debugging file".