1 2 3 4 5 6 7 8 9 10
//@ [!borrow-check] skip fn iter_local_mut_borrow() { let mut x = 0; let mut p = &mut x; loop { p = &mut (*p); *p += 1; } }