aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorThéo Zimmermann2017-05-30 12:10:35 +0200
committerThéo Zimmermann2017-05-30 12:11:04 +0200
commite6c41b96a5ea9f8559acf176cdf997b05ccfb317 (patch)
treed0b596966abb0d69a37448c481d68140edc63bd7 /test-suite
parenteefda76f6f42674fb342e1aa5f1dcf29569a4806 (diff)
Fix bug 5550: "typeclasses eauto with" does not work with section variables.
Diffstat (limited to 'test-suite')
-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 0000000000..bb1222489a
--- /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.