DEBSOURCES
Skip Quicknav
sources / js-of-ocaml / 6.2.0-2 / compiler / tests-wasm_of_ocaml / gh46.ml
1234567
type lst = | Cons of lst * int | Nil let rec make n = if n = 0 then Nil else Cons (make (n - 1), n) let () = assert (make 10 = make 10)