8 lines
77 B
Rust
8 lines
77 B
Rust
fn main() {
|
|
let x = match 0 {
|
|
_ => {
|
|
x: 0
|
|
}
|
|
};
|
|
}
|