aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorMatthieu Sozeau2014-06-26 13:25:18 +0200
committerMatthieu Sozeau2014-06-26 13:25:18 +0200
commitb443e5ce3ea09d82574b0a3196041737f0a5dcc7 (patch)
tree0569f118991da38c6b9cbc45612415068e33ed0b /test-suite/bugs/opened
parent34570d23cf6ae7f6246b38e5094454b0eeea3e75 (diff)
Properly refresh the local hintdb database in case an external tactic changed
the hypotheses in eauto.
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/3267.v37
1 files changed, 0 insertions, 37 deletions
diff --git a/test-suite/bugs/opened/3267.v b/test-suite/bugs/opened/3267.v
deleted file mode 100644
index 43eb1377d2..0000000000
--- a/test-suite/bugs/opened/3267.v
+++ /dev/null
@@ -1,37 +0,0 @@
-Module a.
- Hint Extern 0 => progress subst.
- Goal forall T (x y : T) (P Q : _ -> Prop), x = y -> (P x -> Q x) -> P y -> Q y.
- Proof.
- intros.
- (* this should not fail *)
- Fail progress eauto.
- admit.
- Defined.
-End a.
-
-Module b.
- Hint Extern 0 => progress subst.
- Goal forall T (x y : T) (P Q : _ -> Prop), y = x -> (P x -> Q x) -> P y -> Q y.
- Proof.
- intros.
- eauto.
- Defined.
-End b.
-
-Module c.
- Hint Extern 0 => progress subst; eauto.
- Goal forall T (x y : T) (P Q : _ -> Prop), x = y -> (P x -> Q x) -> P y -> Q y.
- Proof.
- intros.
- eauto.
- Defined.
-End c.
-
-Module d.
- Hint Extern 0 => progress subst; repeat match goal with H : _ |- _ => revert H end.
- Goal forall T (x y : T) (P Q : _ -> Prop), x = y -> (P x -> Q x) -> P y -> Q y.
- Proof.
- intros.
- eauto.
- Defined.
-End d.