summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/unnecessary-await.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/unnecessary-await.stderr')
-rw-r--r--src/test/ui/async-await/unnecessary-await.stderr24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/async-await/unnecessary-await.stderr b/src/test/ui/async-await/unnecessary-await.stderr
deleted file mode 100644
index dc3089336..000000000
--- a/src/test/ui/async-await/unnecessary-await.stderr
+++ /dev/null
@@ -1,24 +0,0 @@
-error[E0277]: `()` is not a future
- --> $DIR/unnecessary-await.rs:9:10
- |
-LL | boo().await;
- | -----^^^^^^ `()` is not a future
- | |
- | this call returns `()`
- |
- = help: the trait `Future` is not implemented for `()`
- = note: () must be a future or must implement `IntoFuture` to be awaited
- = note: required for `()` to implement `IntoFuture`
-help: remove the `.await`
- |
-LL - boo().await;
-LL + boo();
- |
-help: alternatively, consider making `fn boo` asynchronous
- |
-LL | async fn boo() {}
- | +++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.