2021-06-18 07:09:40 +00:00
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:6:5
|
|
|
|
|
|
|
|
|
LL | &42;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^ the borrow produces a value
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/unused-borrows.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_must_use)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2021-07-30 21:21:52 +00:00
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
|
|
|
|
|
|
|
|
LL | let _ = &42;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:9:5
|
|
|
|
|
|
|
|
|
LL | &mut foo(42);
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^^^^^^^ the borrow produces a value
|
|
|
|
|
|
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
2021-07-29 20:35:03 +00:00
|
|
|
|
|
2021-07-30 21:21:52 +00:00
|
|
|
LL | let _ = &mut foo(42);
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:12:5
|
|
|
|
|
|
|
|
|
LL | &&42;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^ the borrow produces a value
|
|
|
|
|
|
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
2021-07-29 20:35:03 +00:00
|
|
|
|
|
2021-07-30 21:21:52 +00:00
|
|
|
LL | let _ = &&42;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:15:5
|
|
|
|
|
|
|
|
|
LL | &&mut 42;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^^^ the borrow produces a value
|
2021-07-29 20:35:03 +00:00
|
|
|
|
|
2021-07-30 21:21:52 +00:00
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
|
|
|
|
|
|
|
|
LL | let _ = &&mut 42;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:18:5
|
|
|
|
|
|
|
|
|
LL | &mut &42;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^^^ the borrow produces a value
|
|
|
|
|
|
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
2021-07-29 20:35:03 +00:00
|
|
|
|
|
2021-07-30 21:21:52 +00:00
|
|
|
LL | let _ = &mut &42;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: unused borrow that must be used
|
|
|
|
--> $DIR/unused-borrows.rs:23:5
|
|
|
|
|
|
|
|
|
LL | && foo(42);
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^^^^^ the borrow produces a value
|
|
|
|
|
|
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
2021-07-29 20:35:03 +00:00
|
|
|
|
|
2021-07-30 21:21:52 +00:00
|
|
|
LL | let _ = && foo(42);
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2021-06-18 07:09:40 +00:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|