rust/tests/ui/imports/resolve_self_super_hint.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0432]: unresolved import `alloc`
--> $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`
--> $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`
--> $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`
--> $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
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`.