summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/unused/unused-async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lint/unused/unused-async.rs')
-rw-r--r--tests/ui/lint/unused/unused-async.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/lint/unused/unused-async.rs b/tests/ui/lint/unused/unused-async.rs
index 4be93aa15..6355f47f0 100644
--- a/tests/ui/lint/unused/unused-async.rs
+++ b/tests/ui/lint/unused/unused-async.rs
@@ -33,7 +33,7 @@ async fn test() {
foo().await; //~ ERROR unused output of future returned by `foo` that must be used
bar(); //~ ERROR unused return value of `bar` that must be used
//~^ ERROR unused implementer of `Future` that must be used
- bar().await; //~ ERROR unused output of future returned by `bar` that must be used
+ bar().await; // ok, it's not an async fn
baz(); //~ ERROR unused implementer of `Future` that must be used
baz().await; // ok
}