summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-14541.rs
blob: 555ec9f9868c5778cd086ef5bff443551c6776eb (plain)
1
2
3
4
5
6
7
8
9
10
struct Vec2 { y: f32 }
struct Vec3 { y: f32, z: f32 }

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

fn main() { }