1
Fork 0
rust/src/test/ui/lint/fn_must_use.stderr

64 lines
1.8 KiB
Text
Raw Normal View History

warning: unused return value of `need_to_use_this_value` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:55:5
|
2019-03-09 15:03:44 +03:00
LL | need_to_use_this_value();
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:3:9
|
2018-02-23 03:42:32 +03:00
LL | #![warn(unused_must_use)]
| ^^^^^^^^^^^^^^^
= note: it's important
warning: unused return value of `MyStruct::need_to_use_this_method_value` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:60:5
|
2019-03-09 15:03:44 +03:00
LL | m.need_to_use_this_method_value();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
warning: unused return value of `EvenNature::is_even` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:61:5
|
2018-02-23 03:42:32 +03:00
LL | m.is_even(); // trait method!
| ^^^^^^^^^^^^
|
= note: no side effects
warning: unused return value of `MyStruct::need_to_use_this_associated_function_value` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:64:5
|
LL | MyStruct::need_to_use_this_associated_function_value();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
warning: unused return value of `std::cmp::PartialEq::eq` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:70:5
|
2019-03-09 15:03:44 +03:00
LL | 2.eq(&3);
| ^^^^^^^^^
warning: unused return value of `std::cmp::PartialEq::eq` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:71:5
|
2019-03-09 15:03:44 +03:00
LL | m.eq(&n);
| ^^^^^^^^^
warning: unused comparison that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:74:5
|
2019-03-09 15:03:44 +03:00
LL | 2 == 3;
| ^^^^^^ help: use `let _ = ...` to ignore it: `let _ = 2 == 3`
|
= note: the comparison produces a value
warning: unused comparison that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/fn_must_use.rs:75:5
|
2019-03-09 15:03:44 +03:00
LL | m == n;
| ^^^^^^ help: use `let _ = ...` to ignore it: `let _ = m == n`
|
= note: the comparison produces a value
warning: 8 warnings emitted