Files
why3/examples/bts/execute.mlw
2018-06-15 16:45:58 +02:00

16 lines
149 B
Plaintext

module Test
use ref.Ref
let foo () =
let (_a1, _a2) = (ref 0, ref 0) in
()
(*
why3 execute execute.mlw Test.foo
*)
end