2018-07-15 16:11:54 -05:00
|
|
|
error[E0597]: borrowed value does not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-11681.rs:12:20
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let testValue = &Test;
|
2018-07-15 16:11:54 -05:00
|
|
|
| ^^^^ temporary value does not live long enough
|
|
|
|
LL | return testValue;
|
|
|
|
LL | }
|
|
|
|
| - temporary value only lives until here
|
|
|
|
|
|
2018-12-25 09:56:47 -06:00
|
|
|
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 11:15...
|
|
|
|
--> $DIR/issue-11681.rs:11:15
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn createTest<'a>() -> &'a Test {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|