]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/coverage-experiments/src/match_without_increment.rs
explained lang_item function body (count_code_region)
[rust.git] / src / test / codegen / coverage-experiments / src / match_without_increment.rs
1 fn main() {
2     let a = 1;
3     let b = 10;
4     let _result = match a < b { true => true, _ => false, };
5 }