1 2 3 4 5 6 7
const CONST_OPT_U8_X: Option<u8> = Some(b'X'); fn main() { callee::print_static_option_u8(); println!("{:?}", &CONST_OPT_U8_X as *const Option<u8>); }