2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:55:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex.lock().unwrap().foo() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | true => {
|
|
|
|
LL | mutex.lock().unwrap().bar();
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::significant-drop-in-scrutinee` implied by `-D warnings`
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex.lock().unwrap().foo();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:141:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match s.lock_m().get_the_value() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | println!("{}", s.lock_m().get_the_value());
|
|
|
|
| ---------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = s.lock_m().get_the_value();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:162:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match s.lock_m_m().get_the_value() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | println!("{}", s.lock_m().get_the_value());
|
|
|
|
| ---------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = s.lock_m_m().get_the_value();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:210:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match counter.temp_increment().len() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = counter.temp_increment().len();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:233:16
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match (mutex1.lock().unwrap().s.len(), true) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex1.lock().unwrap().s.len();
|
|
|
|
LL ~ match (value, true) {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:242:22
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match (true, mutex1.lock().unwrap().s.len(), true) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex1.lock().unwrap().s.len();
|
|
|
|
LL ~ match (true, value, true) {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:252:16
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match (mutex1.lock().unwrap().s.len(), true, mutex2.lock().unwrap().s.len()) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex1.lock().unwrap().s.len();
|
|
|
|
LL ~ match (value, true, mutex2.lock().unwrap().s.len()) {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:252:54
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match (mutex1.lock().unwrap().s.len(), true, mutex2.lock().unwrap().s.len()) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex2.lock().unwrap().s.len();
|
|
|
|
LL ~ match (mutex1.lock().unwrap().s.len(), true, value) {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:263:15
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex3.lock().unwrap().s.as_str() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:273:22
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match (true, mutex3.lock().unwrap().s.as_str()) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:292:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex.lock().unwrap().s.len() > 1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | true => {
|
|
|
|
LL | mutex.lock().unwrap().s.len();
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex.lock().unwrap().s.len() > 1;
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:299:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match 1 < mutex.lock().unwrap().s.len() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | true => {
|
|
|
|
LL | mutex.lock().unwrap().s.len();
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = 1 < mutex.lock().unwrap().s.len();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:317:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex1.lock().unwrap().s.len() < mutex2.lock().unwrap().s.len() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len(),
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len()
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex1.lock().unwrap().s.len() < mutex2.lock().unwrap().s.len();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:328:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex1.lock().unwrap().s.len() >= mutex2.lock().unwrap().s.len() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len(),
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
LL | mutex2.lock().unwrap().s.len()
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex1.lock().unwrap().s.len() >= mutex2.lock().unwrap().s.len();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:363:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match get_mutex_guard().s.len() > 1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | true => {
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = get_mutex_guard().s.len() > 1;
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:380:11
|
2022-05-21 11:24:00 +00:00
|
|
|
|
|
|
|
|
LL | match match i {
|
|
|
|
| ___________^
|
|
|
|
LL | | 100 => mutex1.lock().unwrap(),
|
|
|
|
LL | | _ => mutex2.lock().unwrap(),
|
|
|
|
LL | | }
|
|
|
|
LL | | .s
|
|
|
|
LL | | .len()
|
|
|
|
LL | | > 1
|
|
|
|
| |___________^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
LL ~ let value = match i {
|
|
|
|
LL + 100 => mutex1.lock().unwrap(),
|
|
|
|
LL + _ => mutex2.lock().unwrap(),
|
|
|
|
LL + }
|
|
|
|
LL + .s
|
|
|
|
LL + .len()
|
2022-06-16 14:00:32 +00:00
|
|
|
LL + > 1;
|
|
|
|
LL ~ match value
|
|
|
|
|
|
2022-02-18 06:02:22 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:406:11
|
2022-05-21 11:24:00 +00:00
|
|
|
|
|
|
|
|
LL | match if i > 1 {
|
|
|
|
| ___________^
|
|
|
|
LL | | mutex1.lock().unwrap()
|
|
|
|
LL | | } else {
|
|
|
|
LL | | mutex2.lock().unwrap()
|
|
|
|
... |
|
|
|
|
LL | | .len()
|
|
|
|
LL | | > 1
|
|
|
|
| |___________^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | mutex1.lock().unwrap().s.len();
|
|
|
|
| ---------------------- another value with significant `Drop` created here
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
LL ~ let value = if i > 1 {
|
|
|
|
LL + mutex1.lock().unwrap()
|
|
|
|
LL + } else {
|
|
|
|
LL + mutex2.lock().unwrap()
|
|
|
|
LL + }
|
|
|
|
LL + .s
|
2022-06-16 14:00:32 +00:00
|
|
|
LL + .len()
|
|
|
|
LL + > 1;
|
|
|
|
LL ~ match value
|
|
|
|
|
|
2022-02-18 06:02:22 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:460:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match s.lock().deref().deref() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | 0 | 1 => println!("Value was less than 2"),
|
|
|
|
LL | _ => println!("Value is {}", s.lock().deref()),
|
|
|
|
| ---------------- another value with significant `Drop` created here
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match and create a copy
|
|
|
|
|
|
|
|
|
LL ~ let value = *s.lock().deref().deref();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:488:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match s.lock().deref().deref() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | matcher => println!("Value is {}", s.lock().deref()),
|
|
|
|
| ---------------- another value with significant `Drop` created here
|
|
|
|
LL | _ => println!("Value was not a match"),
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:507:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex.lock().unwrap().i = i {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | _ => {
|
|
|
|
LL | println!("{}", mutex.lock().unwrap().i);
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
LL | },
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ mutex.lock().unwrap().i = i;
|
|
|
|
LL ~ match () {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:513:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match i = mutex.lock().unwrap().i {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | _ => {
|
|
|
|
LL | println!("{}", mutex.lock().unwrap().i);
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
LL | },
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ i = mutex.lock().unwrap().i;
|
|
|
|
LL ~ match () {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:519:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match mutex.lock().unwrap().i += 1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | _ => {
|
|
|
|
LL | println!("{}", mutex.lock().unwrap().i);
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
LL | },
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ mutex.lock().unwrap().i += 1;
|
|
|
|
LL ~ match () {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:525:11
|
2022-02-18 06:02:22 +00:00
|
|
|
|
|
|
|
|
LL | match i += mutex.lock().unwrap().i {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | _ => {
|
|
|
|
LL | println!("{}", mutex.lock().unwrap().i);
|
|
|
|
| --------------------- another value with significant `Drop` created here
|
|
|
|
LL | },
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-02-18 06:02:22 +00:00
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ i += mutex.lock().unwrap().i;
|
|
|
|
LL ~ match () {
|
|
|
|
|
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:588:11
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | match rwlock.read().unwrap().to_number() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
2022-06-04 11:34:07 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: temporary with significant `Drop` in `for` loop condition will live until the end of the `for` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:598:14
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
LL | for s in rwlock.read().unwrap().iter() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-06-30 08:50:09 +00:00
|
|
|
LL | println!("{}", s);
|
|
|
|
LL | }
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
|
|
|
|
|
|
|
error: temporary with significant `Drop` in `match` scrutinee will live until the end of the `match` expression
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/significant_drop_in_scrutinee.rs:613:11
|
2022-06-30 08:50:09 +00:00
|
|
|
|
|
|
|
|
LL | match mutex.lock().unwrap().foo() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - temporary lives until here
|
|
|
|
|
|
|
|
|
= note: this might lead to deadlocks or other unexpected behavior
|
|
|
|
help: try moving the temporary above the match
|
|
|
|
|
|
|
|
|
LL ~ let value = mutex.lock().unwrap().foo();
|
|
|
|
LL ~ match value {
|
|
|
|
|
|
2022-06-04 11:34:07 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: aborting due to 26 previous errors
|
2022-02-18 06:02:22 +00:00
|
|
|
|