summaryrefslogtreecommitdiff
path: root/tests/ui/const-ptr/out_of_bounds_read.rs
blob: 9dd669180da0a46692bb0d1a0182a6efd70ee53e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// error-pattern: evaluation of constant value failed

#![feature(const_ptr_read)]

fn main() {
    use std::ptr;

    const DATA: [u32; 1] = [42];

    const PAST_END_PTR: *const u32 = unsafe { DATA.as_ptr().add(1) };

    const _READ: u32 = unsafe { ptr::read(PAST_END_PTR) };
    const _CONST_READ: u32 = unsafe { PAST_END_PTR.read() };
    const _MUT_READ: u32 = unsafe { (PAST_END_PTR as *mut u32).read() };
}