#![allow(dead_code, deprecated, unused_variables, unused_mut)] use std::cell::LazyCell; fn main() { let lazy = LazyCell::new(|| 92); assert_eq!(LazyCell::force(& lazy), & 92); assert_eq!(&* lazy, & 92); }