about summary refs log tree commit diff
path: root/tests/ui/async-await/async-closures/is-not-fn.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/async-closures/is-not-fn.rs')
-rw-r--r--tests/ui/async-await/async-closures/is-not-fn.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/ui/async-await/async-closures/is-not-fn.rs b/tests/ui/async-await/async-closures/is-not-fn.rs
index f877513043d..4acaa5d9809 100644
--- a/tests/ui/async-await/async-closures/is-not-fn.rs
+++ b/tests/ui/async-await/async-closures/is-not-fn.rs
@@ -1,9 +1,7 @@
 //@ edition:2021
 
-#![feature(async_closure)]
-
 fn main() {
     fn needs_fn(x: impl FnOnce()) {}
     needs_fn(async || {});
-    //~^ ERROR expected `{async closure@is-not-fn.rs:7:14}` to be a closure that returns `()`
+    //~^ ERROR expected `{async closure@is-not-fn.rs:5:14}` to be a closure that returns `()`
 }