Fix opt-lambda:. Merge to 5.0.2.

original commit: a15236ea4f1ba84c9351632e9469e1cd34b5375b
This commit is contained in:
Vincent St-Amour 2010-10-20 14:31:52 -04:00
parent 4a6b3b2b57
commit 9b5a5a6bb5
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#lang typed/racket
(: opt (case-lambda ( -> Void)
(Integer -> Void)))
(define opt
(opt-lambda: ((n : Integer 0))
(display n)))
(opt)
(opt 1)

View File

@ -34,6 +34,7 @@ This file defines two sorts of primitives. All of them are provided into any mod
"base-types.rkt"
"base-types-extra.rkt"
racket/flonum ; for for/flvector and for*/flvector
mzlib/etc
(for-syntax
syntax/parse
syntax/private/util