blob: 58a9c84be5acf66776e4d42dd816eef73ef41b29 [file] [log] [blame]
// edition:2021
#![feature(stmt_expr_attributes)]
#![feature(coroutines)]
fn main() {
let _closure = #[track_caller] || {}; //~ `#[track_caller]` on closures
let _coroutine = #[track_caller] || { yield; }; //~ `#[track_caller]` on closures
let _future = #[track_caller] async {}; //~ `#[track_caller]` on closures
}