2017-05-27 12:58:52 -05:00
|
|
|
error[E0596]: cannot borrow immutable borrowed content `*buf` as mutable
|
2017-03-26 11:35:46 -05:00
|
|
|
--> $DIR/issue-40823.rs:13:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | buf.iter_mut(); //~ ERROR cannot borrow immutable borrowed content
|
2017-03-26 11:35:46 -05:00
|
|
|
| ^^^ cannot borrow as mutable
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-03-26 11:35:46 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0596`.
|