2015-01-08 02:53:58 +00:00
|
|
|
#![feature(box_syntax)]
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2015-01-08 10:54:35 +00:00
|
|
|
static mut a: Box<isize> = box 3;
|
2014-12-30 20:36:03 +00:00
|
|
|
//~^ ERROR allocations are not allowed in statics
|
2013-06-22 01:46:34 +00:00
|
|
|
|
|
|
|
fn main() {}
|