diff --git a/collects/typed-racket/types/convenience.rkt b/collects/typed-racket/types/convenience.rkt index 4a0a9198e4..c7912cc1ec 100644 --- a/collects/typed-racket/types/convenience.rkt +++ b/collects/typed-racket/types/convenience.rkt @@ -3,7 +3,7 @@ (rep type-rep filter-rep object-rep rep-utils) (utils tc-utils) "abbrev.rkt" "numeric-tower.rkt" (only-in racket/contract current-blame-format) - (types comparison printer union subtype utils substitute) + (types comparison union subtype utils substitute) racket/list racket/match (for-syntax syntax/parse racket/base) syntax/id-table racket/dict diff --git a/collects/typed-racket/types/union.rkt b/collects/typed-racket/types/union.rkt index 762fe4b950..1a19bc4642 100644 --- a/collects/typed-racket/types/union.rkt +++ b/collects/typed-racket/types/union.rkt @@ -4,7 +4,7 @@ (rep type-rep rep-utils) (utils tc-utils) (prefix-in c: (contract-req)) - (types utils subtype abbrev printer comparison) + (types utils subtype abbrev comparison) racket/match)