2019-12-06 21:03:58 +00:00
|
|
|
error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
|
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:17:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) field: u8
|
|
|
|
| ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
|
2019-12-06 21:03:58 +00:00
|
|
|
|
|
|
|
error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
|
|
|
|
--> $DIR/field-attributes-vis-unresolved.rs:22:12
|
|
|
|
|
|
|
|
|
LL | pub(in nonexistent) u8
|
|
|
|
| ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
|
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`.
|