Since this is now in a different loc, need to fix up the require.

original commit: 2714b3a84ac5c44af205c1a2460146e64d878daa
This commit is contained in:
Sam Tobin-Hochstadt 2008-07-07 12:56:19 -04:00
parent 782a227c35
commit cc2b39add3

View File

@ -1,6 +1,6 @@
#lang typed-scheme
(require "private/extra-procs.ss")
(require typed-scheme/private/extra-procs)
(call-with-values (lambda () (values 1 2)) (lambda: ([x : Number] [y : Number]) (+ x y)))