blob: 64177ac2a83104129eafb22a27f0e88bccf08515 [file] [log] [blame]
error[E0574]: expected struct, variant or union type, found enum `Result`
--> $DIR/issue-16058.rs:8:9
|
LL | Result {
| ^^^^^^ not a struct, variant or union type
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use std::fmt::Result;
|
LL | use std::io::Result;
|
LL | use std::thread::Result;
|
error: aborting due to previous error