This commit is contained in:
Jay McCarthy 2014-03-19 15:04:20 -06:00
parent f9946f4b95
commit a4f3585101
2 changed files with 9 additions and 0 deletions

View File

@ -6,3 +6,8 @@
< [(typeof Γ M (σσ_2))
---
> [(typeof Γ M (σ_2 → σ))
270a271,274
>
> (define small-counter-example
> (term ((λ (x (list int)) 1) 7)))
> (test-equal (check small-counter-example) #f)

View File

@ -268,3 +268,7 @@
(begin0
(generate-term stlc M #:i-th index)
(set! index (add1 index))))))
(define small-counter-example
(term ((λ (x (list int)) 1) 7)))
(test-equal (check small-counter-example) #f)