]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/field-attributes-vis-unresolved.stderr
Rollup merge of #107761 - oli-obk:miri_🪵, r=TaKO8Ki
[rust.git] / tests / ui / attributes / field-attributes-vis-unresolved.stderr
1 error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
2   --> $DIR/field-attributes-vis-unresolved.rs:17:12
3    |
4 LL |     pub(in nonexistent) field: u8
5    |            ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
6    |
7    = help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
8
9 error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
10   --> $DIR/field-attributes-vis-unresolved.rs:22:12
11    |
12 LL |     pub(in nonexistent) u8
13    |            ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
14    |
15    = help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0433`.