rust/tests/mir-opt/building/simple_match.rs
2023-01-11 09:32:08 +00:00

13 lines
240 B
Rust

// Test that we don't generate unnecessarily large MIR for very simple matches
// EMIT_MIR simple_match.match_bool.built.after.mir
fn match_bool(x: bool) -> usize {
match x {
true => 10,
_ => 20,
}
}
fn main() {}