rust/tests/mir-opt/building/simple_match.rs
2023-10-19 15:51:52 +00:00

14 lines
258 B
Rust

// skip-filecheck
// 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() {}