]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rust-2018/issue-54006.stderr
New upstream version 1.67.1+dfsg1
[rustc.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`.