2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `need_to_use_this_value` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:55:5
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | need_to_use_this_value();
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: it's important
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:3:9
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #![warn(unused_must_use)]
|
2017-09-15 23:26:34 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `MyStruct::need_to_use_this_method_value` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:60:5
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | m.need_to_use_this_method_value();
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-15 23:26:34 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `EvenNature::is_even` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:61:5
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | m.is_even(); // trait method!
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^^^^
|
2018-05-04 04:01:57 +00:00
|
|
|
|
|
|
|
|
= note: no side effects
|
2017-09-15 23:26:34 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `MyStruct::need_to_use_this_associated_function_value` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:64:5
|
2018-10-12 06:10:37 +00:00
|
|
|
|
|
|
|
|
LL | MyStruct::need_to_use_this_associated_function_value();
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-10-12 06:10:37 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `std::cmp::PartialEq::eq` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:70:5
|
2017-09-15 23:26:34 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | 2.eq(&3);
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^
|
2017-09-15 23:26:34 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused return value of `std::cmp::PartialEq::eq` that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:71:5
|
2017-09-23 17:11:39 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | m.eq(&n);
|
2022-08-16 14:46:33 +00:00
|
|
|
| ^^^^^^^^
|
2017-09-23 17:11:39 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused comparison that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:74:5
|
2017-09-23 17:11:39 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | 2 == 3;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^ the comparison 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 _ = 2 == 3;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2017-09-23 17:11:39 +00:00
|
|
|
|
2018-10-08 19:36:50 +00:00
|
|
|
warning: unused comparison that must be used
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/fn_must_use.rs:75:5
|
2017-09-22 22:45:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | m == n;
|
2021-07-30 21:21:52 +00:00
|
|
|
| ^^^^^^ the comparison 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 _ = m == n;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2017-09-22 22:45:47 +00:00
|
|
|
|
2020-03-11 15:30:09 +00:00
|
|
|
warning: 8 warnings emitted
|
|
|
|
|