rust/src/test/ui/issues/issue-14541.stderr

13 lines
359 B
Plaintext
Raw Normal View History

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