Fix missing argument.

Closes PR 12356.
This commit is contained in:
Sam Tobin-Hochstadt 2011-11-11 14:15:45 -05:00
parent d6bd1dc904
commit 5fe89966fc

View File

@ -391,7 +391,7 @@
[((Name: n) (Name: n*))
(if (free-identifier=? n n*)
null
(let ((rn (resolve-once S)) (rn* (resolve-once)))
(let ((rn (resolve-once S)) (rn* (resolve-once T)))
(if (and rn rn*) (cg rn rn*) (fail! S T))))]
;; pairs are pointwise
[((Pair: a b) (Pair: a* b*))