aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGuillaume Melquiond2016-05-03 14:06:17 +0200
committerGuillaume Melquiond2016-05-03 14:10:46 +0200
commit443857fe1bbecf089eb40d522a71a014273c5a23 (patch)
tree6217f4e3b9d9c77e68ad8c5cf869f3f89ca9fa1a /test-suite
parent780f3424fb741385f063864d9b15b2c3e3fc419a (diff)
Use the canonical name when looking for an eliminator (bug #4670).
Disclaimer: I have no idea what I am doing.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/4670.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4670.v b/test-suite/bugs/closed/4670.v
new file mode 100644
index 0000000000..6113992953
--- /dev/null
+++ b/test-suite/bugs/closed/4670.v
@@ -0,0 +1,7 @@
+Require Import Coq.Vectors.Vector.
+Module Bar.
+ Definition foo A n (l : Vector.t A n) : True.
+ Proof.
+ induction l ; exact I.
+ Defined.
+End Bar.