Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct A { foo: isize }
fn a() -> A { panic!() }
fn main() {
let A { , } = a(); //~ ERROR expected ident
}