3141177995
The output of these tests is too complicated to comfortably verify by hand, but we can still use them to observe changes to the underlying mappings produced by codegen/LLVM. If these tests fail due to non-coverage changes (e.g. in HIR-to-MIR lowering or MIR optimizations), it should usually be OK to just `--bless` them, as long as the `run-coverage` test suite still works.
42 lines
603 B
Rust
42 lines
603 B
Rust
#![allow(dead_code, unused_assignments, unused_must_use, unused_variables)]
|
|
|
|
fn foo<T>(x: T) {
|
|
let mut i = 0;
|
|
while i < 10 {
|
|
i != 0 || i != 0;
|
|
i += 1;
|
|
}
|
|
}
|
|
|
|
fn unused_template_func<T>(x: T) {
|
|
let mut i = 0;
|
|
while i < 10 {
|
|
i != 0 || i != 0;
|
|
i += 1;
|
|
}
|
|
}
|
|
|
|
fn unused_func(mut a: u32) {
|
|
if a != 0 {
|
|
a += 1;
|
|
}
|
|
}
|
|
|
|
fn unused_func2(mut a: u32) {
|
|
if a != 0 {
|
|
a += 1;
|
|
}
|
|
}
|
|
|
|
fn unused_func3(mut a: u32) {
|
|
if a != 0 {
|
|
a += 1;
|
|
}
|
|
}
|
|
|
|
fn main() -> Result<(), u8> {
|
|
foo::<u32>(0);
|
|
foo::<f32>(0.0);
|
|
Ok(())
|
|
}
|