rust/src/test/ui/issues/issue-14541.stderr
Mazdak Farrokhzad f35840f77c Pass the span of <init> in let <pat> = <init>;
when type checking `<pat>`.
2019-12-30 13:50:20 +01:00

11 lines
353 B
Text

error[E0308]: mismatched types
--> $DIR/issue-14541.rs:5:9
|
LL | let Vec3 { y: _, z: _ } = v;
| ^^^^^^^^^^^^^^^^^^^ - this expression has type `Vec2`
| |
| expected struct `Vec2`, found struct `Vec3`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.