mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
9 lines
118 B
Plaintext
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 |