rust/tests/ui/resolve/crate-in-paths.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
332 B
Plaintext
Raw Normal View History

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
|
2023-03-18 02:18:39 +00:00
LL + use crate::bar::Foo;
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0425`.