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
/
alias1.mlw
blob
297dedd12715bbdea3cff82fac37ab3f12afc058
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
val r : ref int
10
11
let test () =
12
foo r r
13
14
end