Skip to content

Commit 2c0cf9b

Browse files
committed
fix a bug; it took me 3 hours to realize why this caused TR to diverge
1 parent c208535 commit 2c0cf9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typed-racket-lib/typed-racket/rep/type-rep.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@
16821682

16831683
;; Poly 'smart' destructor
16841684
(define (Poly-body* names t)
1685-
(define orig-names (hash-ref type-var-name-table t))
1685+
(define orig-names (hash-ref type-var-name-table t null))
16861686
(match t
16871687
[(Poly: n bounds body)
16881688
(define new-bounds (for/hash ([(idx v) bounds])

0 commit comments

Comments
 (0)