1error[E0432]: unresolved import `alloc` 2 --> $DIR/resolve_self_super_hint.rs:3:9 3 | 4LL | use alloc::HashMap; 5 | ^^^^^ help: a similar path exists: `self::alloc` 6 7error[E0432]: unresolved import `alloc` 8 --> $DIR/resolve_self_super_hint.rs:8:13 9 | 10LL | use alloc::HashMap; 11 | ^^^^^ help: a similar path exists: `super::alloc` 12 13error[E0432]: unresolved import `alloc` 14 --> $DIR/resolve_self_super_hint.rs:13:17 15 | 16LL | use alloc::HashMap; 17 | ^^^^^ 18 | | 19 | unresolved import 20 | help: a similar path exists: `a::alloc` 21 22error[E0432]: unresolved import `alloc` 23 --> $DIR/resolve_self_super_hint.rs:18:21 24 | 25LL | use alloc::HashMap; 26 | ^^^^^ 27 | | 28 | unresolved import 29 | help: a similar path exists: `a::alloc` 30 31error: aborting due to 4 previous errors 32 33For more information about this error, try `rustc --explain E0432`. 34