Add test case for issue #215.

This commit is contained in:
Sam Tobin-Hochstadt 2015-10-27 17:11:15 -04:00
parent ea6968f1d9
commit cb35383143

View File

@ -0,0 +1,7 @@
#lang typed/racket
(: f : (Listof Integer) (Listof Integer) Integer)
(define (f xs ys)
(match* (xs ys)
[((list a b) (or (list a b) (list b a))) (+ a b)]
[(_ _) 42]))