rust-covfix 0.2.1

Fix Rust coverage data based on source code
Documentation
1
2
3
4
5
6
7
mod sub;

fn main() {
    for i in 0..5 {
        sub::hello_rust();
    }
}