2019-08-29 19:01:04 -05:00
|
|
|
#![feature(const_raw_ptr_deref)]
|
2019-08-30 08:04:12 -05:00
|
|
|
|
|
|
|
use std::{mem, usize};
|
|
|
|
|
|
|
|
// Make sure we error with the right kind of error on a too large slice.
|
|
|
|
const TEST: () = { unsafe { //~ NOTE
|
|
|
|
let slice: *const [u8] = mem::transmute((1usize, usize::MAX));
|
|
|
|
let _val = &*slice; //~ ERROR: any use of this value will cause an error
|
2020-03-05 16:31:39 -06:00
|
|
|
//~^ NOTE: slice is bigger than largest supported object
|
2019-08-30 08:04:12 -05:00
|
|
|
//~^^ on by default
|
|
|
|
} };
|
|
|
|
|
|
|
|
fn main() {}
|