rust/tests/ui/rfcs/rfc-1445-restrict-constants-in-patterns/rfc1445/eq-allows-match.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
214 B
Rust
Raw Normal View History

// run-pass
2016-03-11 12:36:55 -06:00
#![allow(dead_code)]
#[derive(PartialEq, Eq)]
struct Foo {
x: u32
}
const FOO: Foo = Foo { x: 0 };
fn main() {
let y = Foo { x: 1 };
match y {
FOO => { }
_ => { }
}
}