Skip to content

Matching struct-like enum with wildcard is broken #5530

Closed
@gifnksm

Description

@gifnksm

fun1 and fun2 should return same value.

enum Enum {
    Foo { foo: uint },
    Bar { bar: uint }
}

fn fun1(e1: &Enum, e2: &Enum) -> uint {
    match (e1, e2) {
        (&Foo { foo: _ }, &Foo { foo: _ }) => 0,
        (&Foo { foo: _ }, &Bar { bar: _ }) => 1,
        (&Bar { bar: _ }, &Bar { bar: _ }) => 2,
        (&Bar { bar: _ }, &Foo { foo: _ }) => 3,
    }
}

fn fun2(e1: &Enum, e2: &Enum) -> uint {
    match (e1, e2) {
        (&Foo { foo: _ }, &Foo { foo: _ }) => 0,
        (&Foo { foo: _ }, _              ) => 1,
        (&Bar { bar: _ }, &Bar { bar: _ }) => 2,
        (&Bar { bar: _ }, _              ) => 3,
    }
}

fn main() {
    let foo = Foo { foo: 1 };
    let bar = Bar { bar: 1 };

    assert_eq!(fun1(&foo, &foo), 0);
    assert_eq!(fun1(&foo, &bar), 1);
    assert_eq!(fun1(&bar, &bar), 2);
    assert_eq!(fun1(&bar, &foo), 3);

    assert_eq!(fun2(&foo, &foo), 0);
    assert_eq!(fun2(&foo, &bar), 1); // fun2 returns 0
    assert_eq!(fun2(&bar, &bar), 2);
    assert_eq!(fun2(&bar, &foo), 3); // fun2 returns 2
}
$ ./test
rust: task failed at 'expected: 1, given: 0', ./test.rs:34
rust: domain main @0x25b79c0 root task failed

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions