aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMatthieu Sozeau2015-01-13 07:09:05 +0530
committerMatthieu Sozeau2015-01-13 07:09:05 +0530
commit74682bb27da074fedc115238f3085baaccf12d73 (patch)
tree3d8a70616ae17fe27e960fc38bf1c9d799131e87 /test-suite
parent9993ac283e14c0f789b9fa826fd20086059cdcd8 (diff)
TCs: Properly handle Hint Extern with conclusions of the form _ -> _
in typeclasses eauto, remaining compatible with eauto and still producing eta-reduced applications for Hint Resolves. Fixes bug #3794.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/3794.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3794.v b/test-suite/bugs/closed/3794.v
new file mode 100644
index 0000000000..6963d81c14
--- /dev/null
+++ b/test-suite/bugs/closed/3794.v
@@ -0,0 +1,6 @@
+Hint Extern 10 ((?X = ?Y) -> False) => intros; discriminate.
+Hint Unfold not : core.
+
+Goal true<>false.
+typeclasses eauto with core.
+Qed. \ No newline at end of file