]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve_self_super_hint.stderr
New upstream version 1.31.0~beta.19+dfsg1
[rustc.git] / src / test / ui / resolve_self_super_hint.stderr
CommitLineData
b7449926
XL
1error[E0432]: unresolved import `alloc`
2 --> $DIR/resolve_self_super_hint.rs:16:9
3 |
4LL | use alloc::HashMap;
13cf67c4 5 | ^^^^^ did you mean `self::alloc`?
b7449926
XL
6
7error[E0432]: unresolved import `alloc`
8 --> $DIR/resolve_self_super_hint.rs:20:13
9 |
10LL | use alloc::HashMap;
13cf67c4 11 | ^^^^^ did you mean `super::alloc`?
b7449926
XL
12
13error[E0432]: unresolved import `alloc`
14 --> $DIR/resolve_self_super_hint.rs:24:17
15 |
16LL | use alloc::HashMap;
13cf67c4 17 | ^^^^^ did you mean `a::alloc`?
b7449926
XL
18
19error[E0432]: unresolved import `alloc`
20 --> $DIR/resolve_self_super_hint.rs:28:21
21 |
22LL | use alloc::HashMap;
13cf67c4 23 | ^^^^^ did you mean `a::alloc`?
b7449926
XL
24
25error: aborting due to 4 previous errors
26
27For more information about this error, try `rustc --explain E0432`.