2018-06-09 09:04:44 -05:00
|
|
|
error[E0425]: cannot find value `Foo` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/crate-in-paths.rs:10:5
|
2018-06-09 09:04:44 -05:00
|
|
|
|
|
|
|
|
LL | Foo;
|
|
|
|
| ^^^ not found in this scope
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2020-05-04 17:12:06 -05:00
|
|
|
help: consider importing this unit struct
|
2018-06-09 09:04:44 -05:00
|
|
|
|
|
|
|
|
LL | use crate::bar::Foo;
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|