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
I recently started consuming 0.10.4 and I'm seeing a lot of E0433 and E0412 errors in relation to the Vec type when attempting to compile.
Example error output:
error[E0433]: failed to resolve: use of undeclared type `Vec`
--> <removed_path>
|
197 | let mut bitmaps = Vec::new();
| ^^^ use of undeclared type `Vec`
|
help: consider importing this struct
|
1 + use alloc::vec::Vec;
Anyone else experiencing this issue?
The text was updated successfully, but these errors were encountered:
Hi!
I recently started consuming 0.10.4 and I'm seeing a lot of E0433 and E0412 errors in relation to the
Vec
type when attempting to compile.Example error output:
Anyone else experiencing this issue?
The text was updated successfully, but these errors were encountered: