aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/prerequisite/make_local.v
blob: cdb7a269113e6c9d83157a2f9ad20e8a2c06ae78 (plain)
1
2
3
4
5
6
7
8
9
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 Import.v to test the locality flag *)

Local Coercion g (b:bool) := if b then 0 else 1.