Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ edition:2018
//@ check-pass
trait T {
async fn foo() {}
async fn bar(&self) {}
async fn baz() {
// Nested item must not ICE.
fn a() {}
}
fn main() {}