Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// this used to just ICE on compiling
pub fn foo() {
if cfg!(foo) {
static a: isize = 3;
a
} else { 3 };
}