aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/prerequisite
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/prerequisite
parentdc6a9c8d29e7d33949844adc0804f39e1fb22ba2 (diff)
Change Implicit Arguments to Arguments in test-suite
Diffstat (limited to 'test-suite/prerequisite')
-rw-r--r--test-suite/prerequisite/make_local.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/test-suite/prerequisite/make_local.v b/test-suite/prerequisite/make_local.v
index 8700a6c4e..6d9117c05 100644
--- a/test-suite/prerequisite/make_local.v
+++ b/test-suite/prerequisite/make_local.v
@@ -2,8 +2,7 @@
Definition f (A:Type) (a:A) := a.
-Local Arguments Scope f [type_scope type_scope].
-Local Implicit Arguments f [A].
+Local Arguments f [A]%type_scope _%type_scope.
(* Used in ImportedCoercion.v to test the locality flag *)