]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-57015.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / imports / issue-57015.stderr
1 error[E0432]: unresolved import `single_err::something`
2   --> $DIR/issue-57015.rs:10:5
3    |
4 LL | use single_err::something;
5    |     ^^^^^^^^^^^^^^^^^^^^^ no `something` in `single_err`
6    |
7 help: consider importing this module instead
8    |
9 LL | use glob_ok::something;
10    |     ~~~~~~~~~~~~~~~~~~~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0432`.