2018-06-09 14:04:44 +00:00
|
|
|
error[E0425]: cannot find value `Foo` in this scope
|
2022-05-21 01:06:44 +00:00
|
|
|
--> $DIR/crate-in-paths.rs:8:5
|
2018-06-09 14:04:44 +00:00
|
|
|
|
|
|
|
|
LL | Foo;
|
|
|
|
| ^^^ not found in this scope
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2020-05-04 22:12:06 +00:00
|
|
|
help: consider importing this unit struct
|
2018-06-09 14:04:44 +00:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use crate::bar::Foo;
|
2018-06-09 14:04:44 +00:00
|
|
|
|
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-06-09 14:04:44 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|