aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
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.