aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/2404.v
diff options
context:
space:
mode:
authorGravatar Jasper Hugunin <jasperh@cs.washington.edu>2018-02-22 20:06:57 -0800
committerGravatar Jasper Hugunin <jasperh@cs.washington.edu>2018-03-30 17:48:17 -0700
commit0fa8b8cb53050d48187fd2577f2fef0f1a45d024 (patch)
tree838600f3718e1f6baed6d9fe84f75799c63b04b4 /test-suite/bugs/closed/2404.v
parentdc6a9c8d29e7d33949844adc0804f39e1fb22ba2 (diff)
Change Implicit Arguments to Arguments in test-suite
Diffstat (limited to 'test-suite/bugs/closed/2404.v')
-rw-r--r--test-suite/bugs/closed/2404.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/bugs/closed/2404.v b/test-suite/bugs/closed/2404.v
index 8ac696e91..f6ec67601 100644
--- a/test-suite/bugs/closed/2404.v
+++ b/test-suite/bugs/closed/2404.v
@@ -22,13 +22,13 @@ Section Derived.
Definition bexportw := exportw base.
Definition bwweak := wweak base.
- Implicit Arguments bexportw [a b].
+ Arguments bexportw [a b].
Inductive RstarSetProof {I : Type} (T : I -> I -> Type) : I -> I -> Type :=
starReflS : forall a, RstarSetProof T a a
| starTransS : forall i j k, T i j -> (RstarSetProof T j k) -> RstarSetProof T i k.
-Implicit Arguments starTransS [I T i j k].
+Arguments starTransS [I T i j k].
Definition RstarInv {A : Set} (rel : relation A) : A -> A -> Type := (flip (RstarSetProof (flip rel))).