]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
e74abb32
XL
1error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
2 --> $DIR/field-attributes-vis-unresolved.rs:17:12
3 |
4LL | pub(in nonexistent) field: u8
5 | ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
923072b8
FG
6 |
7 = help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
e74abb32
XL
8
9error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
10 --> $DIR/field-attributes-vis-unresolved.rs:22:12
11 |
12LL | pub(in nonexistent) u8
13 | ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
923072b8
FG
14 |
15 = help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
e74abb32
XL
16
17error: aborting due to 2 previous errors
18
19For more information about this error, try `rustc --explain E0433`.