blob: e2028a9e67bcab382e15527c0bac5450be6bac56 [file] [log] [blame]
struct Foo<'a> {
s: &'a mut String
}
fn f(x: usize, f: &Foo) {
f.s.push('x'); //~ ERROR cannot borrow `*f.s` as mutable, as it is behind a `&` reference
}
fn main() {}