rust/tests/rustdoc-ui/issues/issue-61732.stderr

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

15 lines
485 B
Text
Raw Normal View History

error[E0433]: failed to resolve: use of unresolved module or unlinked crate `r#mod`
--> $DIR/issue-61732.rs:3:15
2019-12-04 01:31:35 +00:00
|
LL | pub(in crate::r#mod) fn main() {}
| ^^^^^ use of unresolved module or unlinked crate `r#mod`
|
help: you might be missing a crate named `r#mod`, add it to your project and import it in your code
|
LL + extern crate r#mod;
|
2019-12-04 01:31:35 +00:00
error: aborting due to 1 previous error
2019-12-04 01:31:35 +00:00
For more information about this error, try `rustc --explain E0433`.