]> git.proxmox.com Git - rustc.git/blob - tests/ui/track-diagnostics/track3.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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`.