0baf61bfdb
Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages.
15 lines
373 B
Plaintext
15 lines
373 B
Plaintext
error[E0425]: cannot find value `Foo` in this scope
|
|
--> $DIR/crate-in-paths.rs:10:5
|
|
|
|
|
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`.
|