summaryrefslogtreecommitdiff
path: root/test-suite/success/proof_using.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/proof_using.v')
-rw-r--r--test-suite/success/proof_using.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/success/proof_using.v b/test-suite/success/proof_using.v
index 93a9ef11..bf302df4 100644
--- a/test-suite/success/proof_using.v
+++ b/test-suite/success/proof_using.v
@@ -51,11 +51,17 @@ Proof using v1 v2.
admit.
Qed.
+Lemma deep2 : v1 = v2.
+Proof using v1 v2.
+Admitted.
+
End S2.
Check (deep 3 : v1 = 3).
+Check (deep2 3 : v1 = 3).
End S1.
Check (deep 3 4 : 3 = 4).
+Check (deep2 3 4 : 3 = 4).