summary refs log tree commit diff
path: root/src/test/run-fail/dst-raw-slice.rs
blob: 561b1fb42ed0634cf07a7b2c57b9cf2670b92cc9 (plain)
1
2
3
4
5
6
7
8
9
// Test bounds checking for DST raw slices
// error-pattern:index out of bounds

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