Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(box_syntax)]
static mut a: Box<isize> = box 3;
//~^ ERROR allocations are not allowed in statics
fn main() {}