Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

That's not really true. If it were, this would compile since there are no writes.

  fn main() {
    let mut x = [1,2,3,4,5];
    let y = &mut x[0];
    let z = &x[1];
    println!("y {}... z {} ", y,  z);
  }
But it doesn't.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: