Initial ListDots test.

This commit is contained in:
Sam Tobin-Hochstadt 2010-05-27 14:51:48 -04:00
parent 310bdf3529
commit e40d1824b0

View File

@ -0,0 +1,6 @@
#lang typed/racket
(: f (All (a ...) ((List a ...) -> (List a ... a))))
(define (f x) x)
(ann (values (inst f String Number Boolean)) String)