blob: ff5c1ed753a4db47bc51f45812c83c36f28200ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(* Test visibility of imported objects *)
Require Import make_local.
(* Check local implicit arguments are not imported *)
Check (f nat 0).
(* Check local arguments scopes are not imported *)
Check (f nat (0*0)).
|