error[E0659]: `memoise` is ambiguous
--> src/bin/main_equiped.rs:3:5
|
3 | use memoise::memoise;
| ^^^^^^^ ambiguous name
|
= note: ambiguous because of multiple potential import sources
= note: `memoise` could refer to a crate passed with `--extern`
= help: use `::memoise` to refer to this crate unambiguously
note: `memoise` could also refer to the module imported here
Currently, we'll get the error like following:
To suppress these, we can add
self::
for them.