add small(ish) counterexample to delim-cont-3

This commit is contained in:
Robby Findler 2014-03-23 14:05:59 -05:00
parent 1a4b68f7e5
commit b7cd08b5fd
2 changed files with 17 additions and 0 deletions

View File

@ -11,3 +11,12 @@
939a941,942
>
>
949a953,960
> (define small-counter-example
> (term ((λ (tg : (Prompt Num Bool))
> (% (call/comp (λ (x : Bool) (if x #f #t))
> tg)
> tg
> (λ (x : Num) #t)))
> (make-prompt-tag Num Bool))))
> (test-equal (check small-counter-example) #f)

View File

@ -950,3 +950,11 @@
(set! index (add1 index))
(generate-term abort-lang e #:i-th index))))
(define small-counter-example
(term ((λ (tg : (Prompt Num Bool))
(% (call/comp (λ (x : Bool) (if x #f #t))
tg)
tg
(λ (x : Num) #t)))
(make-prompt-tag Num Bool))))
(test-equal (check small-counter-example) #f)