New test for bug found by eli.

svn: r11969
This commit is contained in:
Sam Tobin-Hochstadt 2008-10-07 21:55:45 +00:00
parent dbf4462228
commit 665da912c8

View File

@ -0,0 +1,9 @@
#lang typed-scheme
(: f (All (a) (a -> a)))
(define (f x)
(: g (All (b) (a (Listof a) -> (Listof a))))
(define (g x y) y)
(g "foo" (list "foo")))
(f 3)