Open LeifAndersen opened 8 years ago
The following code that uses module+ and splicing let fails to run even though it should work perfectly well:
#lang racket (require racket/splicing) (splicing-let () (module+ test 5))
The issue is that the syntax-local-context inside of a splicing-let is a top-level-context, even though it 'should' be a module-context.
The following code that uses module+ and splicing let fails to run even though it should work perfectly well:
The issue is that the syntax-local-context inside of a splicing-let is a top-level-context, even though it 'should' be a module-context.