aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tacticals.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/tacticals.v b/tests/tacticals.v
index 73f9c03b87..1a2fbcbb37 100644
--- a/tests/tacticals.v
+++ b/tests/tacticals.v
@@ -20,3 +20,15 @@ first [
| Message.print (Message.of_string "I won't be printed")
].
Qed.
+
+Goal True /\ True.
+Proof.
+Fail split > [ split | |].
+split > [split | split].
+Qed.
+
+Goal True /\ (True -> True) /\ True.
+Proof.
+split > [ | split] > [split | .. | split].
+intros H; refine &H.
+Qed.