Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ build-pass
//@ edition: 2021
async fn foo(x: impl AsyncFn(&str) -> &str) {}
fn main() {
foo(async |x| x);
}