]> git.lizzy.rs Git - rust.git/blob - src/test/ui/track-diagnostics/track3.stderr
Rollup merge of #103489 - WaffleLapkin:byte_offset_from_you, r=scottmcm
[rust.git] / src / test / ui / track-diagnostics / track3.stderr
1 error[E0422]: cannot find struct, variant or union type `Blah` in this scope
2   --> $DIR/track3.rs:LL:CC
3    |
4 LL |     let _unimported = Blah { field: u8 };
5    |                       ^^^^ not found in this scope
6 -Ztrack-diagnostics: created at compiler/rustc_resolve/src/late/diagnostics.rs:LL:CC
7
8 error[E0423]: expected value, found builtin type `u8`
9   --> $DIR/track3.rs:LL:CC
10    |
11 LL |     let _unimported = Blah { field: u8 };
12    |                                     ^^ not a value
13 -Ztrack-diagnostics: created at compiler/rustc_resolve/src/late/diagnostics.rs:LL:CC
14
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0422, E0423.
18 For more information about an error, try `rustc --explain E0422`.