aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-05-31 11:03:54 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-05-31 11:03:54 +0200
commitab19d271f91007cc76ed95d973bd9b95701c6b2e (patch)
tree85ef6783b7d27dd06e43a5ece0028f602ca85917 /test-suite/bugs
parent0129c6d5481205dd7de82f52acde57bd4cbd4a26 (diff)
parente6c41b96a5ea9f8559acf176cdf997b05ccfb317 (diff)
Merge PR#699: Fix bug 5550: "typeclasses eauto with" does not work with section variables.
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/5550.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5550.v b/test-suite/bugs/closed/5550.v
new file mode 100644
index 000000000..bb1222489
--- /dev/null
+++ b/test-suite/bugs/closed/5550.v
@@ -0,0 +1,10 @@
+Section foo.
+
+ Variable bar : Prop.
+ Variable H : bar.
+
+ Goal bar.
+ typeclasses eauto with foobar.
+ Qed.
+
+End foo.