Merge branch 'smtv2-dont-fail-on-untyped-prover-vars' into 'master'
[why3.git] / tests / test-shape.why
blob7a0519c89d69b782528dc96ff87ff8a8d4c10684
2 theory T
4   use bool.Bool
5   use int.Int
6   use list.List
7   use list.Length
8   use list.Nth
11   goal G : forall l: list 'a. length l >= 3 -> exists i j:int, x:'a. i <> j /\ nth i l = Some x /\ nth j l = Some x
13   goal g1: forall x:int. x >= 0 -> -x <= 0
15 end