19 lines
353 B
Scheme
19 lines
353 B
Scheme
|
;;;; 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
|