mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
276 B
Rust
15 lines
276 B
Rust
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 { }
|