summaryrefslogtreecommitdiff
path: root/test-suite/prerequisite/make_local.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/prerequisite/make_local.v')
-rw-r--r--test-suite/prerequisite/make_local.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/prerequisite/make_local.v b/test-suite/prerequisite/make_local.v
new file mode 100644
index 00000000..8700a6c4
--- /dev/null
+++ b/test-suite/prerequisite/make_local.v
@@ -0,0 +1,10 @@
+(* Used in Import.v to test the locality flag *)
+
+Definition f (A:Type) (a:A) := a.
+
+Local Arguments Scope f [type_scope type_scope].
+Local Implicit Arguments f [A].
+
+(* Used in ImportedCoercion.v to test the locality flag *)
+
+Local Coercion g (b:bool) := if b then 0 else 1.