2024-11-18 03:42:16 +00:00
|
|
|
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nonexistent`
|
2019-12-06 21:03:58 +00:00
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:17:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) field: u8
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^^^^^^^^ use of unresolved module or unlinked crate `nonexistent`
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
help: you might be missing a crate named `nonexistent`, add it to your project and import it in your code
|
2024-07-24 19:31:02 +00:00
|
|
|
|
|
|
|
|
LL + extern crate nonexistent;
|
|
|
|
|
|
2019-12-06 21:03:58 +00:00
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nonexistent`
|
2019-12-06 21:03:58 +00:00
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:22:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) u8
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^^^^^^^^ use of unresolved module or unlinked crate `nonexistent`
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
help: you might be missing a crate named `nonexistent`, add it to your project and import it in your code
|
2024-07-24 19:31:02 +00:00
|
|
|
|
|
|
|
|
LL + extern crate nonexistent;
|
|
|
|
|
|
2019-12-06 21:03:58 +00:00
|
|
|
|
2019-12-06 22:49:21 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2019-12-06 21:03:58 +00:00
|
|
|
|
2019-12-06 22:49:21 +00:00
|
|
|
For more information about this error, try `rustc --explain E0433`.
|