]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve_self_super_hint.stderr
Rollup merge of #55247 - peterjoel:peterjoel-prim-char-doc-example, r=joshtriplett
[rust.git] / src / test / ui / resolve_self_super_hint.stderr
1 error[E0432]: unresolved import `alloc`
2   --> $DIR/resolve_self_super_hint.rs:16:9
3    |
4 LL |     use alloc::HashMap;
5    |         ^^^^^ Did you mean `self::alloc`?
6
7 error[E0432]: unresolved import `alloc`
8   --> $DIR/resolve_self_super_hint.rs:20:13
9    |
10 LL |         use alloc::HashMap;
11    |             ^^^^^ Did you mean `super::alloc`?
12
13 error[E0432]: unresolved import `alloc`
14   --> $DIR/resolve_self_super_hint.rs:24:17
15    |
16 LL |             use alloc::HashMap;
17    |                 ^^^^^ Did you mean `std::alloc`?
18
19 error[E0432]: unresolved import `alloc`
20   --> $DIR/resolve_self_super_hint.rs:28:21
21    |
22 LL |                 use alloc::HashMap;
23    |                     ^^^^^ Did you mean `std::alloc`?
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0432`.