2018-06-09 09:04:44 -05:00
|
|
|
error[E0425]: cannot find value `Foo` in this scope
|
2018-07-16 10:09:01 -05:00
|
|
|
--> $DIR/crate-in-paths.rs:20:5
|
2018-06-09 09:04:44 -05:00
|
|
|
|
|
|
|
|
LL | Foo;
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
|
|
|
LL | use crate::bar::Foo;
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|