1
Fork 0

coverage: Migrate tests/run-coverage into tests/coverage

This commit is contained in:
Zalathar 2023-11-01 21:26:53 +11:00
parent aea7c27eae
commit e9d04c5e24
105 changed files with 7 additions and 9 deletions

41
tests/coverage/unused.rs Normal file
View file

@ -0,0 +1,41 @@
#![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(())
}