summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-57015.stderr
blob: 3b72d57fee41ef03499bce2a8e0207fce291bb5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0432]: unresolved import `single_err::something`
  --> $DIR/issue-57015.rs:10:5
   |
LL | use single_err::something;
   |     ^^^^^^^^^^^^^^^^^^^^^ no `something` in `single_err`
   |
help: consider importing this module instead
   |
LL | use glob_ok::something;
   |     ~~~~~~~~~~~~~~~~~~~

error: aborting due to previous error

For more information about this error, try `rustc --explain E0432`.