2018-10-14 15:12:02 +01:00
|
|
|
error[E0515]: cannot return value referencing local data `*b`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-12470.rs:29:5
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | let bb: &B = &*b; //~ ERROR does not live long enough
|
2018-10-14 15:12:02 +01:00
|
|
|
| --- `*b` is borrowed here
|
2018-07-15 14:11:54 -07:00
|
|
|
LL | make_a(bb)
|
2018-10-14 15:12:02 +01:00
|
|
|
| ^^^^^^^^^^ returns a value referencing data owned by the current function
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-10-14 15:12:02 +01:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|