Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// edition:2021
#![feature(stmt_expr_attributes)]
fn main() {
let _ = #[track_caller] async {
//~^ ERROR `#[track_caller]` on closures is currently unstable [E0658]
};
}