Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
39
tests/run-make/coverage/unused.rs
Normal file
39
tests/run-make/coverage/unused.rs
Normal file
|
@ -0,0 +1,39 @@
|
|||
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(())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue