DEBSOURCES
Skip Quicknav
sources / js-of-ocaml / 6.2.0-2 / compiler / tests-ocaml / basic-more / function_in_ref.ml
1234567891011121314
(* TEST include testing; *) let f x = x + 1 let g x = x - 1 let run () = let r = ref f in r := g; let n = !r 1 in assert(n = 0) include Testing