diff options
author | Jasper Hugunin <jasperh@cs.washington.edu> | 2018-02-22 20:06:57 -0800 |
---|---|---|
committer | Jasper Hugunin <jasperh@cs.washington.edu> | 2018-03-30 17:48:17 -0700 |
commit | 0fa8b8cb53050d48187fd2577f2fef0f1a45d024 (patch) | |
tree | 838600f3718e1f6baed6d9fe84f75799c63b04b4 /test-suite/complexity | |
parent | dc6a9c8d29e7d33949844adc0804f39e1fb22ba2 (diff) |
Change Implicit Arguments to Arguments in test-suite
Diffstat (limited to 'test-suite/complexity')
-rw-r--r-- | test-suite/complexity/injection.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/complexity/injection.v b/test-suite/complexity/injection.v index 08f489d75..a76fa19d3 100644 --- a/test-suite/complexity/injection.v +++ b/test-suite/complexity/injection.v @@ -47,7 +47,7 @@ Parameter mkJoinmap : forall (key: Type) (t: Type) (j: joinable t), joinmap key j. Parameter ADMIT: forall p: Prop, p. -Implicit Arguments ADMIT [p]. +Arguments ADMIT [p]. Module Share. Parameter jb : joinable bool. |