Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
struct B;
impl B {
fn init(&mut self) {}
}
fn main() {
let mut b = [B];
b[1-1].init();