rust/tests/ui/borrowck/borrowck-object-lifetime.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
817 B
Rust
Raw Normal View History

// Test that borrows that occur due to calls to object methods
// properly "claim" the object path.
trait Foo {
fn borrowed(&self) -> &();
fn mut_borrowed(&mut self) -> &();
}
2019-05-28 14:46:13 -04:00
fn borrowed_receiver(x: &dyn Foo) {
let y = x.borrowed();
let z = x.borrowed();
z.use_ref();
y.use_ref();
}
2019-05-28 14:46:13 -04:00
fn mut_borrowed_receiver(x: &mut dyn Foo) {
let y = x.borrowed();
let z = x.mut_borrowed(); //~ ERROR cannot borrow
y.use_ref();
}
2019-05-28 14:46:13 -04:00
fn mut_owned_receiver(mut x: Box<dyn Foo>) {
let y = x.borrowed();
let z = &mut x; //~ ERROR cannot borrow
y.use_ref();
}
2019-05-28 14:46:13 -04:00
fn imm_owned_receiver(mut x: Box<dyn Foo>) {
let y = x.borrowed();
let z = &x;
z.use_ref();
y.use_ref();
}
fn main() {}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }