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 'smtv2-unparsed-sexp' into 'master'
[why3.git]
/
tests
/
extract_ghost.mlw
blob
8dfce8a4ac085b3a360239cb7af8c6512ca47092
1
2
3
module M
4
5
use int.Int
6
7
let f (x:int) (ghost y:int) : int
8
ensures { x = y }
9
= x
10
11
let g (z:int) = f z 0
12
13
end