aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2018-12-20 15:58:24 +0100
committerGaëtan Gilbert2019-03-14 15:46:16 +0100
commit170da77ad45cb0e504f82d075836a8f2965efe28 (patch)
tree6765f7e1102eedcb4d4a0f8857ce6b74a61d5318 /test-suite
parente239e580ac03cb05df8c344be7df6950a5384554 (diff)
Documentation for SProp
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/sprop.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/success/sprop.v b/test-suite/success/sprop.v
index f2aba884d4..268c1880d2 100644
--- a/test-suite/success/sprop.v
+++ b/test-suite/success/sprop.v
@@ -24,7 +24,7 @@ Definition iSquash_rect A (P : iSquash A -> SProp) (H : forall x : A, P (isquash
Fail Check (fun A : SProp => A : Type).
Lemma foo : Prop.
-Proof. pose (fun A : SProp => A : Type). Abort.
+Proof. pose (fun A : SProp => A : Type); exact True. Fail Qed. Abort.
(* define evar as product *)
Check (fun (f:(_:SProp)) => f _).
@@ -186,4 +186,4 @@ Fail Definition relevance_unfixed := fun (A:SProp) (P:A -> Prop) x y (v:P x) =>
(* but the kernel is fine *)
Definition relevance_unfixed := fun (A:SProp) (P:A -> Prop) x y (v:P x) =>
- ltac:(refine (_:P y);exact_no_check v).
+ ltac:(exact_no_check v) : P y.