aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorppedrot2013-06-27 14:31:03 +0000
committerppedrot2013-06-27 14:31:03 +0000
commit2a74ec0fdda9829127eb159673e82c2c5242ae88 (patch)
tree668c75433b756b0d2330ebb3d5bd3b3f5a94e1fa /test-suite
parent3227a799ff592ce7e474c84b96df00aa4ed38055 (diff)
Bugfix: Fixing #3050
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16608 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/3050.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/3050.v b/test-suite/bugs/closed/shouldsucceed/3050.v
new file mode 100644
index 0000000000..4b18722431
--- /dev/null
+++ b/test-suite/bugs/closed/shouldsucceed/3050.v
@@ -0,0 +1,7 @@
+Goal forall A B, A * B -> A.
+Proof.
+intros A B H.
+match goal with
+ | [ H : _ * _ |- _ ] => exact (fst H)
+end.
+Qed.