2017-05-27 19:58:52 +02:00
|
|
|
error[E0596]: cannot borrow immutable borrowed content `*buf` as mutable
|
2017-03-26 19:35:46 +03:00
|
|
|
--> $DIR/issue-40823.rs:13:5
|
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
13 | buf.iter_mut(); //~ ERROR cannot borrow immutable borrowed content
|
2017-03-26 19:35:46 +03:00
|
|
|
| ^^^ cannot borrow as mutable
|
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2017-03-26 19:35:46 +03:00
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0596"
|