You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
To suppress these, we can add self:: for them.
The text was updated successfully, but these errors were encountered:
Currently, we'll get the error like following:
To suppress these, we can add
self::
for them.The text was updated successfully, but these errors were encountered: