summary refs log tree commit diff
path: root/src/test/ui/consts/validate_never_arrays.rs
blob: 9610b7b22f161a843833a1f6bf708e5fe1e6a30a (plain)
1
2
3
4
5
#![feature(const_raw_ptr_deref, never_type)]

const FOO: &[!; 1] = unsafe { &*(1_usize as *const [!; 1]) }; //~ ERROR undefined behavior

fn main() {}