summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/dangling.rs
blob: b5d72d46f2861a5e95d42126edc93940a303f46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(const_transmute, const_raw_ptr_deref)]

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
    //~^ NOTE: total size is bigger than largest supported object
    //~^^ on by default
} };

fn main() {}