aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-05-30 12:03:21 +0200
committerPierre-Marie Pédrot2014-05-30 12:03:21 +0200
commitefb5ba8c57208313d03a5a84ec387244082d23c6 (patch)
tree73189100ddeda07b93048a9aae0e5750a9d087e1 /test-suite
parent744e49018cb5c9cfb662c950433c82006ca64988 (diff)
Adding test-suite for bug #3355.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/3355.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3355.v b/test-suite/bugs/closed/3355.v
new file mode 100644
index 0000000000..46a5714781
--- /dev/null
+++ b/test-suite/bugs/closed/3355.v
@@ -0,0 +1,6 @@
+Inductive paths {A} (x : A) : A -> Type := idpath : paths x x.
+Goal forall A B : Set, @paths Type A B -> @paths Set A B.
+Proof.
+ intros A B H.
+ Fail exact H.
+Abort.