2019-04-22 08:40:08 +01:00
|
|
|
error[E0515]: cannot return value referencing temporary value
|
|
|
|
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:15:3
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let testValue = &id(Test);
|
2019-04-22 08:40:08 +01:00
|
|
|
| -------- temporary value created here
|
|
|
|
LL | testValue
|
|
|
|
| ^^^^^^^^^ returns a value referencing data owned by the current function
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
error[E0515]: cannot return value referencing temporary value
|
|
|
|
--> $DIR/regions-lifetime-of-struct-or-enum-variant.rs:21:3
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let testValue = &id(MyEnum::Variant1);
|
2019-04-22 08:40:08 +01:00
|
|
|
| -------------------- temporary value created here
|
|
|
|
LL | testValue
|
|
|
|
| ^^^^^^^^^ returns a value referencing data owned by the current function
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|