2019-12-06 15:03:58 -06: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-21 21:48:35 -05:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
|
2019-12-06 15:03:58 -06: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-21 21:48:35 -05:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
|
2019-12-06 15:03:58 -06:00
|
|
|
|
2019-12-06 16:49:21 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2019-12-06 15:03:58 -06:00
|
|
|
|
2019-12-06 16:49:21 -06:00
|
|
|
For more information about this error, try `rustc --explain E0433`.
|