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

13 lines
103 B
Plaintext

module M
use ref.Ref
val x : ref int
let f () : int
ensures { result = !x }
= !x
end