I tried this code:
fn main() {
assert!(!false);
}
I expected to see this happen: Run this program with cargo-llvm-cov: cargo llvm-cov run --html, I expect the source code should be fully covered.
Instead, this happened: The assert! part in the source code is not covered. But if I change !false to true, the source will be fully covered, it seems that I can’t get assert! to be covered as long as the argument starts with an ! operator.
Meta
rustc --version --verbose:
rustc 1.76.0-nightly (f967532a4 2023-12-08)
binary: rustc
commit-hash: f967532a47eb728ada44473a5c4c2eca1a45fe30
commit-date: 2023-12-08
host: x86_64-pc-windows-msvc
release: 1.76.0-nightly
LLVM version: 17.0.5
I tried this code:
I expected to see this happen: Run this program with
cargo-llvm-cov:cargo llvm-cov run --html, I expect the source code should be fully covered.Instead, this happened: The
assert!part in the source code is not covered. But if I change!falsetotrue, the source will be fully covered, it seems that I can’t getassert!to be covered as long as the argument starts with an!operator.Meta
rustc --version --verbose: