Add test of behavior like the "module" language in DrRacket.

original commit: d0bf047121351bc696e247299776050f13cc26b3
This commit is contained in:
Sam Tobin-Hochstadt 2011-09-12 12:14:50 -04:00
parent af26c11c83
commit 40de6c2ac7

View File

@ -0,0 +1,10 @@
#lang racket/load
(module m typed/racket (define x 1))
(require 'm)
(current-namespace (module->namespace ''m))
(eval 'x)
(eval 5)