mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
18 lines
214 B
Rust
18 lines
214 B
Rust
// run-pass
|
|
#![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 => { }
|
|
_ => { }
|
|
}
|
|
}
|