about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/promote_mutable_zst_mir_borrowck.rs
blob: 666bec83f6287f761d0ac931f095f9d16ff35f9e (plain)
1
2
3
4
5
//@ check-pass

pub fn main() {
    let y: &'static mut [u8; 0] = &mut [];
}