2016-11-08 00:21:53 -06:00
|
|
|
error: cannot borrow immutable borrowed content `*x` as mutable
|
|
|
|
--> $DIR/borrowck-fn-in-const-b.rs:17:9
|
|
|
|
|
|
|
|
|
16 | fn broken(x: &Vec<String>) {
|
|
|
|
| ------------ use `&mut Vec<String>` here to make mutable
|
|
|
|
17 | x.push(format!("this is broken"));
|
2017-01-17 01:42:11 -06:00
|
|
|
| ^ cannot borrow as mutable
|
2016-11-08 00:21:53 -06:00
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-11-08 00:21:53 -06:00
|
|
|
|