* Things I didn't expect to read today:

```rust
static OVERFLOWS: AtomicU32 = AtomicU32::new(0);
// ...
fn do_stuff() {
    let overflows = &OVERFLOWS as *const AtomicU32 as *const u32;
    let hi1 = overflows.read_volatile();
}
```