Closed
Description
struct Foo {
x: Option<NotInScope>,
}
fn main() {
let f = Foo {
x: None,
};
}
error[E0412]: cannot find type `NotInScope` in this scope
--> src/main.rs:2:15
|
2 | x: Option<NotInScope>,
| ^^^^^^^^^^ not found in this scope
error[E0282]: type annotations needed
--> src/main.rs:7:12
|
7 | x: None,
| ^^^^ cannot infer type for `T`
error: aborting due to 2 previous errors
This "type annotations needed" error is confusing, especially if the two error messages are apart.