summary refs log tree commit diff
path: root/src/test/ui/issues/issue-14541.rs
blob: 705c3d326c65ccfac3b4411c7d06456feccf4bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct Vec2 { y: f32 }
struct Vec3 { y: f32, z: f32 }

fn make(v: Vec2) {
    let Vec3 { y: _, z: _ } = v;
    //~^ ERROR mismatched types
    //~| expected type `Vec2`
    //~| found type `Vec3`
    //~| expected struct `Vec2`, found struct `Vec3`
}

fn main() { }