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
396 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: you might be missing crate `r#mod`
--> $DIR/issue-61732.rs:3:15
2019-12-03 19:31:35 -06:00
|
LL | pub(in crate::r#mod) fn main() {}
| ^^^^^ you might be missing crate `r#mod`
|
help: consider importing the `r#mod` crate
|
LL + extern crate r#mod;
|
2019-12-03 19:31:35 -06:00
error: aborting due to 1 previous error
2019-12-03 19:31:35 -06:00
For more information about this error, try `rustc --explain E0433`.