Resolving line length build fail

This commit is contained in:
Jacob Clark 2016-06-08 13:26:18 +01:00
parent 0379493bd9
commit 4c5f3a6d65

View File

@ -16,12 +16,12 @@ enum Sexpression {
fn causes_ice(mut l: &mut Sexpression) { fn causes_ice(mut l: &mut Sexpression) {
loop { match l { loop { match l {
&mut Sexpression::Num(ref mut n) => {}, &mut Sexpression::Num(ref mut n) => {},
&mut Sexpression::Cons(ref mut expr) => { //~ ERROR cannot borrow `l.0` as mutable more than once at a time [E0499] &mut Sexpression::Cons(ref mut expr) => { //~ ERROR cannot borrow `l.0`
//~| ERROR cannot borrow `l.0` as mutable more than once at a time [E0499] //~| ERROR cannot borrow `l.0`
l = &mut **expr; //~ ERROR cannot assign to `l` because it is borrowed [E0506] l = &mut **expr; //~ ERROR cannot assign to `l`
} }
}} }}
} }
fn main() { fn main() {
} }