rust/src/test/ui/issues/issue-4366-2.stderr

29 lines
748 B
Plaintext
Raw Normal View History

error[E0412]: cannot find type `Bar` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/issue-4366-2.rs:15:21
2018-07-15 16:11:54 -05:00
|
LL | fn sub() -> Bar { 1 }
2018-07-15 16:11:54 -05:00
| ^^^ not found in this scope
|
2018-07-15 16:11:54 -05:00
help: possible candidate is found in another module, you can import it into scope
|
LL | use a::b::Bar;
2018-07-15 16:11:54 -05:00
|
error[E0423]: expected function, found module `foo`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-4366-2.rs:25:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | foo();
2018-07-15 16:11:54 -05:00
| ^^^ not a function
|
2018-07-15 16:11:54 -05:00
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use foo::foo;
|
LL | use m1::foo;
|
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0412, E0423.
2018-07-15 16:11:54 -05:00
For more information about an error, try `rustc --explain E0412`.