summaryrefslogtreecommitdiff
path: root/tests/ui/consts/const-mut-refs/issue-76510.rs
blob: 143d2fb6b9a3a1a599f36edcc222f4f1d7d34e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// stderr-per-bitwidth

use std::mem::{transmute, ManuallyDrop};

const S: &'static mut str = &mut " hello ";
//~^ ERROR: mutable references are not allowed in the final value of constants
//~| ERROR: mutation through a reference is not allowed in constants
//~| ERROR: cannot borrow data in a `&` reference as mutable

const fn trigger() -> [(); unsafe {
        let s = transmute::<(*const u8, usize), &ManuallyDrop<str>>((S.as_ptr(), 3));
        0
    }] {
    [(); 0]
}

fn main() {}