Files
why3/bench/check-ce/let_function.mlw
2023-02-13 14:47:35 +01:00

9 lines
118 B
Plaintext

use int.Int
let function f(x:int) : int = x+1
let main_f (y:int)
ensures { result <> 44 }
=
let z = f y in
z+1