2021-07-30 05:35:03 +09:00
|
|
|
error: unused logical operation that must be used
|
|
|
|
--> $DIR/issue-85913.rs:4:5
|
|
|
|
|
|
|
|
|
LL | function() && return 1;
|
2021-07-31 06:21:52 +09:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ the logical operation produces a value
|
2021-07-30 05:35:03 +09:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/issue-85913.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_must_use)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2021-07-31 06:21:52 +09:00
|
|
|
help: use `let _ = ...` to ignore the resulting value
|
|
|
|
|
|
|
|
|
LL | let _ = function() && return 1;
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++++
|
2021-07-30 05:35:03 +09:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|