]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/issue-54006.stderr
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / ui / rust-2018 / issue-54006.stderr
1 error[E0432]: unresolved import `alloc`
2   --> $DIR/issue-54006.rs:6:5
3    |
4 LL | use alloc::vec;
5    |     ^^^^^ help: a similar path exists: `core::alloc`
6
7 error: cannot determine resolution for the macro `vec`
8   --> $DIR/issue-54006.rs:10:18
9    |
10 LL |     let mut xs = vec![];
11    |                  ^^^
12    |
13    = note: import resolution is stuck, try simplifying macro imports
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0432`.