rust/tests/ui/static/static-mut-not-constant.rs
2023-01-11 09:32:08 +00:00

7 lines
123 B
Rust

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