41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
error: unused logical operation that must be used
|
|
--> $DIR/issue-85913.rs:4:5
|
|
|
|
|
LL | function() && return 1;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ the logical operation produces a value
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/issue-85913.rs:1:9
|
|
|
|
|
LL | #![deny(unused_must_use)]
|
|
| ^^^^^^^^^^^^^^^
|
|
help: use `let _ = ...` to ignore the resulting value
|
|
|
|
|
LL | let _ = function() && return 1;
|
|
| +++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|