]> git.proxmox.com Git - rustc.git/blob - src/test/ui/attributes/field-attributes-vis-unresolved.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / 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`.