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
fix sessions and CE oracles
[why3.git]
/
tests
/
test-polyrec.why
blob
34869631b8b4037720adf5dc9d2c5ee590179611
1
2
3
theory T
4
5
use option.Option
6
7
type t 'a = A | Lam (t (option 'a))
8
9
inductive r (t 'a) (t 'a) =
10
| cas : forall x y:t (option 'a). r x y -> r (Lam x) (Lam y)
11
12
goal G : true
13
14
end