You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
399 B
9 lines
399 B
4 months ago
|
error[E0716]: temporary value dropped while borrowed
|
||
|
--> $DIR/temporary-value.rs:4:22
|
||
|
|
|
||
|
4 | let _ = anyhow!(&String::new());
|
||
|
| ---------^^^^^^^^^^^^^-- temporary value is freed at the end of this statement
|
||
|
| | |
|
||
|
| | creates a temporary which is freed while still in use
|
||
|
| argument requires that borrow lasts for `'static`
|