summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0505.rs
blob: 941f5f2199d24b8bf5d5a8f23a6b476931ddf93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct Value {}

fn eat(val: Value) {}

fn main() {
    let x = Value{};
    {
        let _ref_to_val: &Value = &x;
        eat(x); //~ ERROR E0505
        _ref_to_val.use_ref();
    }
}

trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { }  }
impl<T> Fake for T { }