rust/src/test/ui/issues/issue-12470.nll.stderr

12 lines
423 B
Plaintext
Raw Normal View History

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
| --- `*b` is borrowed here
2018-07-15 14:11:54 -07:00
LL | make_a(bb)
| ^^^^^^^^^^ returns a value referencing data owned by the current function
2018-07-15 14:11:54 -07:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0515`.