diff --git a/macrotypes/examples/mlish+adhoc.rkt b/macrotypes/examples/mlish+adhoc.rkt index 9e9324e..2af23bd 100644 --- a/macrotypes/examples/mlish+adhoc.rkt +++ b/macrotypes/examples/mlish+adhoc.rkt @@ -1,7 +1,8 @@ #lang s-exp "../typecheck.rkt" (require (only-in "../typecheck.rkt" [define-typed-syntax def-typed-stx/no-provide])) -(require racket/fixnum racket/flonum) +(require (postfix-in - racket/fixnum) + (postfix-in - racket/flonum)) (extends "ext-stlc.rkt" diff --git a/macrotypes/examples/mlish.rkt b/macrotypes/examples/mlish.rkt index 6eb1b34..7735019 100644 --- a/macrotypes/examples/mlish.rkt +++ b/macrotypes/examples/mlish.rkt @@ -1,6 +1,7 @@ #lang s-exp macrotypes/typecheck (require - racket/fixnum racket/flonum + (postfix-in - racket/fixnum) + (postfix-in - racket/flonum) (for-syntax macrotypes/type-constraints macrotypes/variance-constraints)) (extends