summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/4787.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/4787.v')
-rw-r--r--test-suite/bugs/closed/4787.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4787.v b/test-suite/bugs/closed/4787.v
new file mode 100644
index 00000000..b586cba5
--- /dev/null
+++ b/test-suite/bugs/closed/4787.v
@@ -0,0 +1,9 @@
+(* [Unset Bracketing Last Introduction Pattern] was not working *)
+
+Unset Bracketing Last Introduction Pattern.
+
+Goal forall T (x y : T * T), fst x = fst y /\ snd x = snd y -> x = y.
+do 10 ((intros [] || intro); simpl); reflexivity.
+Qed.
+
+