rust/tests/ui/feature-gates/feature-gate-closure_track_caller.rs
2025-04-08 23:06:31 +03:00

10 lines
361 B
Rust

//@ edition:2021
#![feature(stmt_expr_attributes)]
#![feature(coroutines)]
fn main() {
let _closure = #[track_caller] || {}; //~ ERROR `#[track_caller]` on closures
let _coroutine = #[coroutine] #[track_caller] || { yield; }; //~ ERROR `#[track_caller]` on closures
let _future = #[track_caller] async {}; //~ ERROR `#[track_caller]` on closures
}