Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(dead_code)]
pub fn main() {
#[derive(Debug)]
struct Foo {
foo: isize,
}
let f = Foo { foo: 10 };
format!("{:?}", f);