2024-07-23 19:43:46 +00:00
|
|
|
error[E0433]: failed to resolve: you might be missing crate `nonexistent`
|
2019-12-07 00:03:58 +03:00
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:17:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) field: u8
|
2024-07-23 19:43:46 +00:00
|
|
|
| ^^^^^^^^^^^ you might be missing crate `nonexistent`
|
2022-05-22 11:48:35 +09:00
|
|
|
|
|
2024-07-24 19:31:02 +00:00
|
|
|
help: consider importing the `nonexistent` crate
|
|
|
|
|
|
|
|
|
LL + extern crate nonexistent;
|
|
|
|
|
|
2019-12-07 00:03:58 +03:00
|
|
|
|
2024-07-23 19:43:46 +00:00
|
|
|
error[E0433]: failed to resolve: you might be missing crate `nonexistent`
|
2019-12-07 00:03:58 +03:00
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:22:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) u8
|
2024-07-23 19:43:46 +00:00
|
|
|
| ^^^^^^^^^^^ you might be missing crate `nonexistent`
|
2022-05-22 11:48:35 +09:00
|
|
|
|
|
2024-07-24 19:31:02 +00:00
|
|
|
help: consider importing the `nonexistent` crate
|
|
|
|
|
|
|
|
|
LL + extern crate nonexistent;
|
|
|
|
|
|
2019-12-07 00:03:58 +03:00
|
|
|
|
2019-12-07 01:49:21 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2019-12-07 00:03:58 +03:00
|
|
|
|
2019-12-07 01:49:21 +03:00
|
|
|
For more information about this error, try `rustc --explain E0433`.
|