wasm-lang/test/t6
2023-10-02 19:03:58 -07:00

8 lines
115 B
Text

fn main() -> i32 {
let foo = 10;
match foo * 2 {
10 => 4,
30 => 5,
_ => 6,
}
}