rust/tests/ui/resolve/missing-in-namespace.stderr

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

20 lines
568 B
Plaintext
Raw Normal View History

2021-01-18 13:01:09 +00:00
error[E0433]: failed to resolve: could not find `hahmap` in `std`
--> $DIR/missing-in-namespace.rs:2:21
2021-01-18 13:01:09 +00:00
|
LL | let _map = std::hahmap::HashMap::new();
| ^^^^^^ could not find `hahmap` in `std`
2021-01-18 13:01:09 +00:00
|
2022-05-03 02:07:47 +00:00
help: consider importing this struct
2021-01-18 13:01:09 +00:00
|
2023-03-18 02:18:39 +00:00
LL + use std::collections::HashMap;
2021-01-18 13:01:09 +00:00
|
2022-05-03 02:07:47 +00:00
help: if you import `HashMap`, refer to it directly
|
LL - let _map = std::hahmap::HashMap::new();
LL + let _map = HashMap::new();
2022-06-08 17:34:57 +00:00
|
2021-01-18 13:01:09 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0433`.