rust/tests/ui/consts/const-eval/ub-slice-get-unchecked.rs
2023-04-16 11:38:52 +00:00

12 lines
269 B
Rust

// known-bug: #110395
#![feature(const_slice_index)]
const A: [(); 5] = [(), (), (), (), ()];
// Since the indexing is on a ZST, the addresses are all fine,
// but we should still catch the bad range.
const B: &[()] = unsafe { A.get_unchecked(3..1) };
fn main() {}