]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38293.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-38293.stderr
1 error[E0432]: unresolved import `foo::f`
2   --> $DIR/issue-38293.rs:16:14
3    |
4 LL | use foo::f::{self}; //~ ERROR unresolved import `foo::f`
5    |              ^^^^ no `f` in `foo`
6
7 error[E0423]: expected function, found module `baz`
8   --> $DIR/issue-38293.rs:25:5
9    |
10 LL |     baz(); //~ ERROR expected function, found module `baz`
11    |     ^^^ not a function
12 help: possible better candidate is found in another module, you can import it into scope
13    |
14 LL | use bar::baz;
15    |
16
17 error: aborting due to 2 previous errors
18
19 Some errors occurred: E0423, E0432.
20 For more information about an error, try `rustc --explain E0423`.