Merge branch 'smtv2-unparsed-sexp' into 'master'
[why3.git] / tests / extract_ghost.mlw
blob8dfce8a4ac085b3a360239cb7af8c6512ca47092
3 module M
5   use int.Int
7   let f (x:int) (ghost y:int) : int
8     ensures { x = y }
9   = x
11   let g (z:int) = f z 0
13 end