Files
why3/bench/infer/return_function.mlw
Claude Marche e6a11b4b11 complements on BDDinfer
support for unary -, div and mod in logic

support for <-> in logic

support for calls inside conditions of if and while

support for `check`

fixed compilation warnings
2023-01-20 17:38:10 +01:00

11 lines
144 B
Plaintext

use int.Int
val ref x : int
let f (a : int) : int = a + a
let main [@bddinfer] () =
let temp = f 6 in
x <- temp;
assert { x = 12 }