stlc-sub 1

This commit is contained in:
Jay McCarthy 2014-03-19 15:11:39 -06:00
parent 6e3a9861c6
commit 9b8697fa6e
2 changed files with 7 additions and 0 deletions

View File

@ -5,3 +5,7 @@
106,107d105 106,107d105
< [(subst x x v) < [(subst x x v)
< v] < v]
290a289,291
> (define small-counter-example
> (term ((λ (x int) x) 1)))
> (test-equal (check small-counter-example) #f)

View File

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