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
When working on a #![no_std] crate and doing a code complete on Vec, selecting alloc::vec::Vec, the import is added to the top of the file, but an appropriate extern crate alloc; is not added anywhere, causing the project to immediately complain and fail to build.
It would be better if RA could detect this and add the extern crate at the crate root.