blob: 0aa7d558c307d7874535a8d7f666c46ee7e733d5 [file] [log] [blame] [edit]
error[E0433]: failed to resolve: you might be missing crate `r#mod`
--> $DIR/issue-61732.rs:3:15
|
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;
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0433`.