Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E0433 and E0412 for type Vec in 0.10.4 #273

Closed
mkwan-amzn opened this issue May 8, 2024 · 1 comment · Fixed by #279
Closed

E0433 and E0412 for type Vec in 0.10.4 #273

mkwan-amzn opened this issue May 8, 2024 · 1 comment · Fixed by #279
Labels

Comments

@mkwan-amzn
Copy link

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:

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?

@Kerollmops
Copy link
Member

I think it is related to #279 and #278. I will mark this issue to be closed after we merge this PR. Thank you for the report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants