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 'fix_another_sessions' into 'master'
[why3.git]
/
tests
/
test_rewrite.mlw
blob
e49c6425eb8b78ebc6133f943ac050293ad2e837
1
2
3
module M
4
5
predicate (-->) (x y:'a) = "rewrite" x = y
6
7
use int.Int
8
9
goal g0 :
10
forall x:int. ("rewrite" x = 42) -> x+1 = 42+1
11
12
goal g :
13
forall x:int. x --> 42 -> x+1 = 42
14
15
end