mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
26 lines
636 B
Plaintext
26 lines
636 B
Plaintext
error[E0412]: cannot find type `Foo` in this scope
|
|
--> $DIR/dont-suggest-foreign-doc-hidden.rs:11:16
|
|
|
|
|
LL | pub fn test(_: Foo) {}
|
|
| ^^^ not found in this scope
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
LL + use local::Foo;
|
|
|
|
|
|
|
error[E0412]: cannot find type `Bar` in this scope
|
|
--> $DIR/dont-suggest-foreign-doc-hidden.rs:14:17
|
|
|
|
|
LL | pub fn test2(_: Bar) {}
|
|
| ^^^ not found in this scope
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
LL + use hidden_struct::Bar;
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0412`.
|