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`
|
= note: expected type `vec2`
found type `vec3`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.