stchang / pasterack

The Racket pastebin.
30 stars 7 forks source link

Pasterack fails to run module+ in splicing-let #49

Open LeifAndersen opened 8 years ago

LeifAndersen commented 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.