Merge branch 'minimum-excludant-other-versions' into 'master'
[why3.git] / bench / programs / bad-typing / alias2.mlw
blob6bb563457c56cf9da36223d81e8b75a75b3f31d0
1 module M
3   use ref.Ref
5   let foo (x : ref int) (y : ref int) =
6     x := 1;
7     y := 2
9   let test (x : ref int) =
10     foo x x
12 end