signatures broke a while back and nobody uses then in *SL

This commit is contained in:
Matthias Felleisen 2014-08-02 08:41:15 -04:00
parent ac93668a20
commit 1bf4bf1872

View File

@ -52,9 +52,13 @@
(t #rx"Advanced Student$"
#<<--
(define-struct foo (x))
(: make-foo (Number -> foo))
(: foo-x (foo -> Number))
;; ----------------------------------------------------
;; MF: something broke about signatures
;; Shriram said at Dagstuhl that he doesn't use them,
;; and I don't know of anyone else who uses them in *SL
;; ----------------------------------------------------
;; (: make-foo (Number -> foo))
;; (: foo-x (foo -> Number))
(define x (make-foo 5))
(foo-x x)