summary refs log tree commit diff
path: root/tests/ui/array-slice-vec/dst-raw-slice.rs
blob: f1281f4e302f2ada0723ee93f36c801a972ca039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test bounds checking for DST raw slices

//@ run-fail
//@ error-pattern:index out of bounds
//@ ignore-emscripten no processes

#[allow(unconditional_panic)]
fn main() {
    let a: *const [_] = &[1, 2, 3];
    unsafe {
        let _b = (*a)[3];
    }
}