7 lines
180 B
Rust
7 lines
180 B
Rust
#![feature(box_syntax)]
|
|
|
|
static mut a: Box<isize> = box 3;
|
|
//~^ ERROR allocations are not allowed in statics
|
|
//~| ERROR static contains unimplemented expression type
|
|
|
|
fn main() {}
|