summary refs log tree commit diff
path: root/tests/ui/consts/miri_unleashed/raw_mutable_const.rs
blob: adb1f8bf3ec55d1703a26823f14c12a247a8d82a (plain)
1
2
3
4
5
6
7
8
// compile-flags: -Zunleash-the-miri-inside-of-you

use std::cell::UnsafeCell;

const MUTABLE_BEHIND_RAW: *mut i32 = &UnsafeCell::new(42) as *const _ as *mut _;
//~^ ERROR: unsupported untyped pointer in constant

fn main() {}