aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/chicken/li_typemaps_runme_proxy.ss
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/chicken/li_typemaps_runme_proxy.ss')
-rw-r--r--Examples/test-suite/chicken/li_typemaps_runme_proxy.ss13
1 files changed, 0 insertions, 13 deletions
diff --git a/Examples/test-suite/chicken/li_typemaps_runme_proxy.ss b/Examples/test-suite/chicken/li_typemaps_runme_proxy.ss
deleted file mode 100644
index 52997c6fe..000000000
--- a/Examples/test-suite/chicken/li_typemaps_runme_proxy.ss
+++ /dev/null
@@ -1,13 +0,0 @@
-(require 'li_typemaps)
-(load "../schemerunme/li_typemaps_proxy.scm")
-
-(call-with-values (lambda () (inoutr-int2 3 -2))
- (lambda (a b)
- (if (not (and (= a 3) (= b -2)))
- (error "Error in inoutr-int2"))))
-(call-with-values (lambda () (out-foo 4))
- (lambda (a b)
- (if (not (and (= (slot-ref a 'a) 4) (= b 8)))
- (error "Error in out-foo"))))
-
-(exit 0)