]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-reborrow-from-shorter-mut-ref-mut-ref.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / regions / regions-reborrow-from-shorter-mut-ref-mut-ref.stderr
CommitLineData
48663c56 1error: lifetime may not live long enough
923072b8 2 --> $DIR/regions-reborrow-from-shorter-mut-ref-mut-ref.rs:4:5
48663c56
XL
3 |
4LL | fn copy_borrowed_ptr<'a, 'b, 'c>(p: &'a mut &'b mut &'c mut isize) -> &'b mut isize {
5 | -- -- lifetime `'b` defined here
6 | |
7 | lifetime `'a` defined here
8LL | &mut ***p
9 | ^^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
60c5eb7d
XL
10 |
11 = help: consider adding the following bound: `'a: 'b`
48663c56
XL
12
13error: aborting due to previous error
14