2018-08-08 07:28:26 -05:00
|
|
|
error[E0432]: unresolved import `alloc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:6:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^^ did you mean `self::alloc`?
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:10:13
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^^ did you mean `super::alloc`?
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:14:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^^ did you mean `a::alloc`?
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `alloc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve_self_super_hint.rs:18:21
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use alloc::HashMap;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^^ did you mean `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`.
|