aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMatej Kosik2016-06-07 16:17:06 +0200
committerMatej Kosik2016-06-07 16:17:06 +0200
commite6e082606a8cefe9f2f3390df84e4ef2a0de33f2 (patch)
tree01e637216a68c0705f732747bf7d1bbdb9777839 /test-suite
parent9122085af09f99a017b020c5a07fcf5d11f43332 (diff)
parentdd69520b66a3669d9593b59165961baa63d3c40f (diff)
Merge branch 'trunk' of git+ssh://scm.gforge.inria.fr/gitroot/coq/coq into trunk
Diffstat (limited to 'test-suite')
-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 0000000000..b586cba50f
--- /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.
+
+