2024-07-23 14:43:46 -05:00
|
|
|
error[E0433]: failed to resolve: you might be missing crate `r#mod`
|
2020-03-14 07:28:17 -05:00
|
|
|
--> $DIR/issue-61732.rs:3:15
|
2019-12-03 19:31:35 -06:00
|
|
|
|
|
|
|
|
LL | pub(in crate::r#mod) fn main() {}
|
2024-07-23 14:43:46 -05:00
|
|
|
| ^^^^^ you might be missing crate `r#mod`
|
2022-05-21 21:48:35 -05:00
|
|
|
|
|
2024-07-24 14:31:02 -05:00
|
|
|
help: consider importing the `r#mod` crate
|
|
|
|
|
|
|
|
|
LL + extern crate r#mod;
|
|
|
|
|
|
2019-12-03 19:31:35 -06:00
|
|
|
|
2023-11-21 10:44:51 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-12-03 19:31:35 -06:00
|
|
|
|
2020-03-14 07:28:17 -05:00
|
|
|
For more information about this error, try `rustc --explain E0433`.
|