repo.or.cz
/
why3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'upgrade_proofs_coq_8_11_to_8_16' into 'master'
[why3.git]
/
bench
/
check-ce
/
int32.mlw
blob
5727e8c1c2b058e2c44a34c37eec6a8c7ad8ec8a
1
module Ce_int32
2
3
use mach.int.Int32
4
5
let dummy_update (ref r : int32)
6
requires { int32'int r = 22}
7
ensures { int32'int r = 42} =
8
r <- (42:int32);
9
r <- r + r;
10
11
end