wasm-lang/test/t6

9 lines
115 B
Text
Raw Permalink Normal View History

2023-10-03 02:03:58 +00:00
fn main() -> i32 {
let foo = 10;
match foo * 2 {
10 => 4,
30 => 5,
_ => 6,
}
}