summaryrefslogtreecommitdiff
path: root/test-suite/ide/univ.fake
blob: 90af8785ad2bbca2dc98d6194d224b1ecee67297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Script simulating a dialog between coqide and coqtop -ideslave
# Run it via fake_ide
#
# jumping between broken proofs + interp error while fixing.
# the error should note make the GUI unfocus the currently focused proof.
 
# first proof
ADD { Set Implicit Arguments. }
ADD { Record dynamic := dyn { dyn_type : Type; dyn_value : dyn_type }. }
ADD { Lemma dyn_inj_type : forall A1 A2 (x1:A1) (x2:A2), dyn x1 = dyn x2 -> A1 = A2. }
ADD { Proof. }
ADD { now intros A1 A2 x1 x2 [= e1 e2]. }
ADD { Qed. }
JOIN