blob: 9eb735a3aab53da795cc7149aebb56928b33bcfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0425]: cannot find value `Foo` in this scope
--> $DIR/crate-in-paths.rs:8:5
|
LL | Foo;
| ^^^ not found in this scope
|
help: consider importing this unit struct
|
LL + use crate::bar::Foo;
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0425`.
|