blob: 2091fffd418ee68c3b315e16f01b5fbb0af6954b [file] [log] [blame]
#![feature(box_syntax)]
static mut a: Box<isize> = box 3;
//~^ ERROR allocations are not allowed in statics
fn main() {}