This compiles fine: ``` rust #![allow(dead_code)] static FOO: [uint, .. 2] = [0, 0]; static BAR: &'static mut [uint, .. 2] = & FOO; fn main() {} ```