mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 03:40:10 +00:00
10 lines
246 B
Rust
10 lines
246 B
Rust
#![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() {}
|