Merge branch '878-span-file-resolution-logic-different-for-module-identifiers' into...
[why3.git] / examples / bts / simplify.mlw
blob155f96ec51055c460da3974892944adc1eb5340c
3 module M
5   use ref.Ref
7   val x : ref int
9   let f () : int
10     ensures  { result = !x }
11   = !x
13 end