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