Consider the sample code:
Require Import BinNat.
Open Scope N.
Check (N.ones).
(* Error: The reference ones
was not found in the current environment. *)
Check (ones).
How do I import BinNat
in such a way that I don't have to resolve ones
to N.ones
?