main()1 fn main() {
2     let mut buf = &[1, 2, 3, 4];
3     buf.iter_mut(); //~ ERROR cannot borrow `*buf` as mutable, as it is behind a `&` reference
4 }
5