]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-object-lifetime.rs
Rollup merge of #53376 - frewsxcv:frewsxcv-copy, r=GuillaumeGomez
[rust.git] / src / test / ui / borrowck / borrowck-object-lifetime.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that borrows that occur due to calls to object methods
12 // properly "claim" the object path.
13
14
15
16 trait Foo {
17     fn borrowed(&self) -> &();
18     fn mut_borrowed(&mut self) -> &();
19 }
20
21 fn borrowed_receiver(x: &Foo) {
22     let y = x.borrowed();
23     let z = x.borrowed();
24     z.use_ref();
25     y.use_ref();
26 }
27
28 fn mut_borrowed_receiver(x: &mut Foo) {
29     let y = x.borrowed();
30     let z = x.mut_borrowed(); //~ ERROR cannot borrow
31     y.use_ref();
32 }
33
34 fn mut_owned_receiver(mut x: Box<Foo>) {
35     let y = x.borrowed();
36     let z = &mut x; //~ ERROR cannot borrow
37     y.use_ref();
38 }
39
40 fn imm_owned_receiver(mut x: Box<Foo>) {
41     let y = x.borrowed();
42     let z = &x;
43     z.use_ref();
44     y.use_ref();
45 }
46
47 fn main() {}
48
49 trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { }  }
50 impl<T> Fake for T { }