… but actions on them might not be
fn main() { let n: i64 = 12345; let safe = &n as *const _; println!("{safe:p}"); }
This slide should take about 2 minutes.
Modify the example to de-reference safe
without an unsafe
block.