rust/tests/ui/suggestions/undeclared-module-alloc.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
377 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: use of undeclared crate or module `alloc`
--> $DIR/undeclared-module-alloc.rs:3:5
|
LL | use alloc::rc::Rc;
| ^^^^^ use of undeclared crate or module `alloc`
|
2021-11-02 23:53:57 -05:00
= help: add `extern crate alloc` to use the `alloc` crate
error: aborting due to previous error
For more information about this error, try `rustc --explain E0433`.