]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/issue-16058.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / resolve / issue-16058.stderr
CommitLineData
32a655c1 1error[E0574]: expected struct, variant or union type, found enum `Result`
f9f354fc 2 --> $DIR/issue-16058.rs:10:9
32a655c1 3 |
0531ce1d 4LL | Result {
32a655c1 5 | ^^^^^^ not a struct, variant or union type
e74abb32 6 |
f9f354fc 7help: consider importing one of these items instead
041b39d2 8 |
0531ce1d 9LL | use std::fmt::Result;
041b39d2 10 |
0531ce1d 11LL | use std::io::Result;
041b39d2 12 |
0531ce1d 13LL | use std::thread::Result;
041b39d2 14 |
32a655c1 15
041b39d2 16error: aborting due to previous error
32a655c1 17
e74abb32 18For more information about this error, try `rustc --explain E0574`.