]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-4366-2.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-4366-2.stderr
1 error[E0412]: cannot find type `Bar` in this scope
2   --> $DIR/issue-4366-2.rs:15:21
3    |
4 LL |         fn sub() -> Bar { 1 }
5    |                     ^^^ not found in this scope
6 help: possible candidate is found in another module, you can import it into scope
7    |
8 LL |         use a::b::Bar;
9    |
10
11 error[E0423]: expected function, found module `foo`
12   --> $DIR/issue-4366-2.rs:25:5
13    |
14 LL |     foo(); //~ ERROR expected function, found module `foo`
15    |     ^^^ not a function
16 help: possible better candidates are found in other modules, you can import them into scope
17    |
18 LL | use foo::foo;
19    |
20 LL | use m1::foo;
21    |
22
23 error: aborting due to 2 previous errors
24
25 Some errors occurred: E0412, E0423.
26 For more information about an error, try `rustc --explain E0412`.