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 'minimum-excludant-other-versions' into 'master'
[why3.git]
/
bench
/
programs
/
bad-typing
/
alias2.mlw
blob
6bb563457c56cf9da36223d81e8b75a75b3f31d0
1
module M
2
3
use ref.Ref
4
5
let foo (x : ref int) (y : ref int) =
6
x := 1;
7
y := 2
8
9
let test (x : ref int) =
10
foo x x
11
12
end