1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
;; -*-theme-d-*-
;; Copyright (C) 2021 Tommi Höynälänmaa
;; Distributed under GNU General Public License version 3,
;; see file doc/GPL-3.
;; Expected results: error (type mismatch)
(define-proper-program (tests test805)
(import (standard-library core)
(standard-library list-utilities)
(standard-library console-io))
(define-param-method my-cons (%type)
(((i <integer>) (x %type))
(:pair %type <integer>)
pure)
(cons x i))
(define-param-method my-cons (%type)
(((s <symbol>) (x %type))
(:pair %type <symbol>)
pure)
(cons x s))
(define-param-method my-proc (%type1 %type2)
(((l1 (:uniform-list %type1))
(l2 (:uniform-list %type2)))
<none> nonpure)
(console-display-line (map my-cons l1 l2)))
(define-main-proc (() <none> nonpure)
(let* ((l1 '(1.5 2.5 3.5))
(l2 '(#t #f #t)))
(my-proc l1 l2))))
|