fix ty-var bug

This commit is contained in:
Sam Caldwell 2019-05-10 10:27:30 -04:00
parent 47d2568a93
commit 75539d0ec3
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@
(free-identifier=? #'X #'Y)]
[((~∀ (X:id ...) τ1) (~∀ (Y:id ...) τ2))
#:when (stx-length=? #'(X ...) #'(Y ...))
#:with τ2-X/Y (substs #'(Y ...) #'(X ...) #'τ2)
#:with τ2-X/Y (substs #'(X ...) #'(Y ...) #'τ2)
(<: #'τ1 #'τ2-X/Y)]
[((~Base τ1:id) (~Base τ2:id))
(free-identifier=? #'τ1 #'τ2)]