]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/resolve_self_super_hint.stderr
Auto merge of #79780 - camelid:use-summary_opts, r=GuillaumeGomez
[rust.git] / src / test / ui / imports / resolve_self_super_hint.stderr
1 error[E0432]: unresolved import `alloc`
2   --> $DIR/resolve_self_super_hint.rs:3:9
3    |
4 LL |     use alloc::HashMap;
5    |         ^^^^^ help: a similar path exists: `self::alloc`
6
7 error[E0432]: unresolved import `alloc`
8   --> $DIR/resolve_self_super_hint.rs:8:13
9    |
10 LL |         use alloc::HashMap;
11    |             ^^^^^ help: a similar path exists: `super::alloc`
12
13 error[E0432]: unresolved import `alloc`
14   --> $DIR/resolve_self_super_hint.rs:13:17
15    |
16 LL |             use alloc::HashMap;
17    |                 ^^^^^
18    |                 |
19    |                 unresolved import
20    |                 help: a similar path exists: `a::alloc`
21
22 error[E0432]: unresolved import `alloc`
23   --> $DIR/resolve_self_super_hint.rs:18:21
24    |
25 LL |                 use alloc::HashMap;
26    |                     ^^^^^
27    |                     |
28    |                     unresolved import
29    |                     help: a similar path exists: `a::alloc`
30
31 error: aborting due to 4 previous errors
32
33 For more information about this error, try `rustc --explain E0432`.