summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-38147-4.rs
blob: e2028a9e67bcab382e15527c0bac5450be6bac56 (plain)
1
2
3
4
5
6
7
8
9
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() {}