about summary refs log tree commit diff
path: root/tests/run-coverage/async2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-coverage/async2.rs')
-rw-r--r--tests/run-coverage/async2.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/run-coverage/async2.rs b/tests/run-coverage/async2.rs
index 21f4e65de30..2884ff297af 100644
--- a/tests/run-coverage/async2.rs
+++ b/tests/run-coverage/async2.rs
@@ -8,9 +8,6 @@ fn non_async_func() {
     }
 }
 
-
-
-
 async fn async_func() {
     println!("async_func was covered");
     let b = true;
@@ -19,9 +16,6 @@ async fn async_func() {
     }
 }
 
-
-
-
 async fn async_func_just_println() {
     println!("async_func_just_println was covered");
 }