about summary refs log tree commit diff
path: root/tests/run-coverage/async2.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2023-08-17 11:24:56 +1000
committerZalathar <Zalathar@users.noreply.github.com>2023-08-26 14:35:34 +1000
commit72b721f48e3695f25a0935ad535e75e6777d829b (patch)
treed9035f73872bfb90c94385098bb79f48c869b9aa /tests/run-coverage/async2.rs
parent9334ec93541fd6963a3bfa2d2d09e3e33ac93131 (diff)
downloadrust-72b721f48e3695f25a0935ad535e75e6777d829b.tar.gz
rust-72b721f48e3695f25a0935ad535e75e6777d829b.zip
Resolve all warnings in `run-coverage` tests
When one of these tests fails, any compiler warnings will be printed to the
console, which makes it harder to track down the actual reason for failure.

(The outstanding warnings were found by temporarily adding `-Dwarnings` to the
compiler arguments for `RunCoverage` in `src/tools/compiletest/src/runtest.rs`.)
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 959d48ce9db..21f4e65de30 100644
--- a/tests/run-coverage/async2.rs
+++ b/tests/run-coverage/async2.rs
@@ -1,11 +1,5 @@
 // compile-flags: --edition=2018
 
-use core::{
-    future::Future,
-    marker::Send,
-    pin::Pin,
-};
-
 fn non_async_func() {
     println!("non_async_func was covered");
     let b = true;