ligo/src/test/adt_generator/amodule.ml
2020-04-13 19:23:12 +02:00

24 lines
227 B
OCaml

(* open Amodule_utils *)
type root =
| A of rootA
| B of rootB
| C of string
and a = {
a1 : ta1 ;
a2 : ta2 ;
}
and ta1 =
| X of root
| Y of ta2
and ta2 =
| Z of ta2
| W of unit
and rootA = a list
and rootB = int list