summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/track-caller/async-block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/track-caller/async-block.rs')
-rw-r--r--tests/ui/async-await/track-caller/async-block.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/async-await/track-caller/async-block.rs b/tests/ui/async-await/track-caller/async-block.rs
index 8e81387c3..8ddd4ab11 100644
--- a/tests/ui/async-await/track-caller/async-block.rs
+++ b/tests/ui/async-await/track-caller/async-block.rs
@@ -1,9 +1,9 @@
// edition:2021
-#![feature(closure_track_caller, stmt_expr_attributes)]
+#![feature(stmt_expr_attributes)]
fn main() {
let _ = #[track_caller] async {
- //~^ ERROR attribute should be applied to a function definition [E0739]
+ //~^ ERROR `#[track_caller]` on closures is currently unstable [E0658]
};
}