rust/src/test/ui/resolve_self_super_hint.stderr

28 lines
815 B
Plaintext
Raw Normal View History

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;
| ^^^^^ 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;
| ^^^^^ 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;
| ^^^^^ 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;
| ^^^^^ did you mean `a::alloc`?
2018-08-08 07:28:26 -05:00
error: aborting due to 4 previous errors
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0432`.