about summary refs log tree commit diff
path: root/src/test/run-make/coverage/unused.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/coverage/unused.rs')
-rw-r--r--src/test/run-make/coverage/unused.rs39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/run-make/coverage/unused.rs b/src/test/run-make/coverage/unused.rs
deleted file mode 100644
index fb6113eb01c..00000000000
--- a/src/test/run-make/coverage/unused.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-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(())
-}