check-errors/type-errors-numbers.cplxnum.scm

19 lines
353 B
Scheme
Raw Normal View History

2024-09-25 15:33:04 +00:00
;;;; type-errors-numbers.cplxnum.scm -*- Scheme -*-
(module type-errors-numbers.cplxnum
(;export
error-cplxnum)
(import scheme)
(import (chicken base))
(import (chicken module))
(import (chicken type))
(import type-errors-basic)
(: error-cplxnum (* * #!optional * -> noreturn))
(define-error-type cplxnum)
) ;module type-errors-numbers.cplxnum