A warning should be generated with: ``` rust let mut a = 2; let mut a_mut = &mut a; let a_ref: &u8 = &a_mut; ``` which is more approriately written as: ``` rust let mut a = 2; let mut a_mut = &mut a; let a_ref: &u8 = a_mut; ``` (when possible)