mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
7 lines
140 B
Plaintext
7 lines
140 B
Plaintext
use int.Int
|
|
|
|
let test_ce (ref x : int) (y:int)
|
|
requires { 0 <= x <= 10 /\ 3 <= y <= 17 }
|
|
ensures { 17 <= x <= 42 }
|
|
= x <- x + y;
|