2018-08-08 07:28:26 -05:00
|
|
|
error[E0432]: unresolved import `alloc`
|
2019-07-23 12:34:17 -05:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:3:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2019-01-16 14:30:41 -06:00
|
|
|
| ^^^^^ help: a similar path exists: `self::alloc`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2019-07-23 12:34:17 -05:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:8:13
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2019-01-16 14:30:41 -06:00
|
|
|
| ^^^^^ help: a similar path exists: `super::alloc`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2019-07-23 12:34:17 -05:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:13:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2019-01-16 14:30:41 -06:00
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| unresolved import
|
|
|
|
| help: a similar path exists: `a::alloc`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2019-07-23 12:34:17 -05:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:18:21
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2019-01-16 14:30:41 -06:00
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| unresolved import
|
|
|
|
| help: a similar path exists: `a::alloc`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0432`.
|