blob: f2a52cb5ca1c50faff3b60499fe6a46f2c3ddeb6 [file] [log] [blame]
#[no_mangle]
pub extern "C" fn overflow() {
let xs = [0, 1, 2, 3];
let _y = unsafe { *xs.as_ptr().offset(4) };
}