```rust
static MUTEX: Mutex<u32>;

critical_section::with(|cs| {
   let ref1 = MUTEX.borrow();
   let ref2 = MUTEX.borrow();
})