]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-45696-scribble-on-boxed-borrow.migrate.stderr
Rollup merge of #60549 - euclio:doctest-panic-messages, r=GuillaumeGomez
[rust.git] / src / test / ui / issues / issue-45696-scribble-on-boxed-borrow.migrate.stderr
1 warning[E0713]: borrow may still be in use when destructor runs
2   --> $DIR/issue-45696-scribble-on-boxed-borrow.rs:51:5
3    |
4 LL | fn scribbled<'a>(s: Scribble<'a>) -> &'a mut u32 {
5    |              -- lifetime `'a` defined here
6 LL |     &mut *s.0
7    |     ^^^^^^^^^ returning this value requires that `*s.0` is borrowed for `'a`
8 ...
9 LL | }
10    | - here, drop of `s` needs exclusive access to `*s.0`, because the type `Scribble<'_>` implements the `Drop` trait
11    |
12    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
13    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
14    = note: for more information, try `rustc --explain E0729`
15
16 warning[E0713]: borrow may still be in use when destructor runs
17   --> $DIR/issue-45696-scribble-on-boxed-borrow.rs:62:5
18    |
19 LL | fn boxed_scribbled<'a>(s: Box<Scribble<'a>>) -> &'a mut u32 {
20    |                    -- lifetime `'a` defined here
21 LL |     &mut *(*s).0
22    |     ^^^^^^^^^^^^ returning this value requires that `*s.0` is borrowed for `'a`
23 ...
24 LL | }
25    | - here, drop of `s` needs exclusive access to `*s.0`, because the type `Scribble<'_>` implements the `Drop` trait
26    |
27    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
28    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
29    = note: for more information, try `rustc --explain E0729`
30
31 warning[E0713]: borrow may still be in use when destructor runs
32   --> $DIR/issue-45696-scribble-on-boxed-borrow.rs:73:5
33    |
34 LL | fn boxed_boxed_scribbled<'a>(s: Box<Box<Scribble<'a>>>) -> &'a mut u32 {
35    |                          -- lifetime `'a` defined here
36 LL |     &mut *(**s).0
37    |     ^^^^^^^^^^^^^ returning this value requires that `*s.0` is borrowed for `'a`
38 ...
39 LL | }
40    | - here, drop of `s` needs exclusive access to `*s.0`, because the type `Scribble<'_>` implements the `Drop` trait
41    |
42    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
43    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
44    = note: for more information, try `rustc --explain E0729`
45
46 error: compilation successful
47   --> $DIR/issue-45696-scribble-on-boxed-borrow.rs:80:1
48    |
49 LL | / fn main() {
50 LL | |     let mut x = 1;
51 LL | |     {
52 LL | |         let mut long_lived = Scribble(&mut x);
53 ...  |
54 LL | |     *boxed_boxed_scribbled(Box::new(Box::new(Scribble(&mut x)))) += 10;
55 LL | | }
56    | |_^
57
58 error: aborting due to previous error
59
60 For more information about this error, try `rustc --explain E0713`.