aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorVincent Laporte2019-03-14 10:34:46 +0000
committerVincent Laporte2019-10-04 09:29:24 +0000
commit94f1cb115b791a36ee660e94bf086e1638acbb88 (patch)
treed3e0afd8a4e3910a6106b0e2d72b23c2c45471f3 /test-suite/bugs/opened
parent87c17a6871ef4c21ff86a050297d33738c5a870a (diff)
[Stdlib] OrderedType: do not pollute the “core” hint database
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/bug_1596.v7
1 files changed, 3 insertions, 4 deletions
diff --git a/test-suite/bugs/opened/bug_1596.v b/test-suite/bugs/opened/bug_1596.v
index 820022d995..27cb731151 100644
--- a/test-suite/bugs/opened/bug_1596.v
+++ b/test-suite/bugs/opened/bug_1596.v
@@ -69,9 +69,8 @@ Definition t := (X.t * Y.t)%type.
elim (X.lt_not_eq H2 H3).
elim H0;clear H0;intros.
right.
- split.
- eauto.
- eauto.
+ split;
+ eauto with ordered_type.
Qed.
Lemma lt_not_eq : forall (x y:t),(lt x y)->~(eq x y).
@@ -97,7 +96,7 @@ Definition t := (X.t * Y.t)%type.
apply EQ.
split;trivial.
apply GT.
- right;auto.
+ right;auto with ordered_type.
apply GT.
left;trivial.
Defined.