I'm trying to define a datatype that contains sorts introduced by declare-sort or define-sort. But the following attempt results in errors.
(declare-sort A)
(define-sort B () Int)
(declare-datatypes ((listA (nilA) (consA (hdA A) (tlA listA))))) ;=> unknown sort 'A'
(declare-datatypes ((listB (nilB) (consB (hdB B) (tlB listB))))) ;=> unknown sort 'B'
Is there a way to do that?
Thanks in advance.