aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2018-06-04 21:09:49 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2018-06-04 21:09:49 +0200
commitd862b659457b12437d4fa348c3c4dc3dd08d8065 (patch)
treefc4c5009977361e932043cdfff9b4ff434cc1ba0 /test-suite/success
parentb0ed0c2c1c7ca8fc434ecadd3a9ed906e6e428c2 (diff)
parent2eecd666a45a79241f0aadb9493ae8ef9cc9795e (diff)
Merge PR #7229: Deprecate implicit tactic solving.
Diffstat (limited to 'test-suite/success')
-rw-r--r--test-suite/success/ImplicitTactic.v16
1 files changed, 0 insertions, 16 deletions
diff --git a/test-suite/success/ImplicitTactic.v b/test-suite/success/ImplicitTactic.v
deleted file mode 100644
index d8fa3043d..000000000
--- a/test-suite/success/ImplicitTactic.v
+++ /dev/null
@@ -1,16 +0,0 @@
-(* A Wiedijk-Cruz-Filipe style tactic for solving implicit arguments *)
-
-(* Declare a term expression with a hole *)
-Parameter quo : nat -> forall n:nat, n<>0 -> nat.
-Notation "x / y" := (quo x y _) : nat_scope.
-
-(* Declare the tactic for resolving implicit arguments still
- unresolved after type-checking; it must complete the subgoal to
- succeed *)
-Declare Implicit Tactic assumption.
-
-Goal forall n d, d<>0 -> { q:nat & { r:nat | d * q + r = n }}.
-intros.
-(* Here, assumption is used to solve the implicit argument of quo *)
-exists (n / d).
-