blob: c0bfc475f1960411ac4fe2385cd17c07670fa2d4 [file] [log] [blame]
error[E0597]: borrowed value does not live long enough
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:14:20
|
LL | let testValue = &id(Test);
| ^^^^^^^^ temporary value does not live long enough
...
LL | }
| - temporary value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 13:19...
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:13:19
|
LL | fn structLifetime<'a>() -> &'a Test {
| ^^
error[E0597]: borrowed value does not live long enough
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:20:20
|
LL | let testValue = &id(MyEnum::Variant1);
| ^^^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
...
LL | }
| - temporary value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 19:20...
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:19:20
|
LL | fn variantLifetime<'a>() -> &'a MyEnum {
| ^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0597`.