fix sessions and CE oracles
[why3.git] / tests / test-polyrec.why
blob34869631b8b4037720adf5dc9d2c5ee590179611
3 theory T
5 use option.Option
7 type t 'a = A | Lam (t (option 'a))
9 inductive r (t 'a) (t 'a) =
10  | cas : forall x y:t (option 'a). r x y -> r (Lam x) (Lam y)
12 goal G : true
14 end