#![allow(incomplete_features)] #![feature(const_mut_refs)] #![feature(adt_const_params)] struct T; impl T { const fn set_false(&self) { unsafe { *(B as *const bool as *mut bool) = false; //~^ ERROR evaluation of constant value failed [E0080] } } } const _: () = { let x = T::<{&true}>; x.set_false(); }; fn main() {}