about summary refs log tree commit diff
path: root/tests/ui/static/static-mut-not-constant.rs
blob: 3830b46828707f456382943b872a90d86541de9e (plain)
1
2
3
4
static mut a: Box<isize> = Box::new(3);
//~^ ERROR cannot call non-const associated function

fn main() {}