rust/tests/ui/unit_arg.stderr

182 lines
3.8 KiB
Text
Raw Normal View History

2018-01-18 23:02:18 +01:00
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:29:5
2018-01-18 23:02:18 +01:00
|
2019-08-26 19:35:25 +02:00
LL | / foo({
2018-12-27 16:57:55 +01:00
LL | | 1;
LL | | });
2019-08-26 19:35:25 +02:00
| |______^
|
2020-05-31 19:29:36 +02:00
= note: `-D clippy::unit-arg` implied by `-D warnings`
2020-02-17 18:12:01 +01:00
help: remove the semicolon from the last statement in the block
|
LL | 1
|
2020-08-21 00:07:56 +02:00
help: or move the expression in front of the call and replace it with the unit literal `()`
2019-08-26 19:35:25 +02:00
|
LL | {
LL | 1;
2020-08-27 01:40:02 +02:00
LL | };
LL | foo(());
2019-10-26 21:53:42 +02:00
|
2018-01-18 23:02:18 +01:00
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:32:5
2018-01-18 23:02:18 +01:00
|
2018-12-27 16:57:55 +01:00
LL | foo(foo(1));
2019-08-26 19:35:25 +02:00
| ^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
2020-08-21 00:07:56 +02:00
help: move the expression in front of the call and replace it with the unit literal `()`
2020-02-17 18:12:01 +01:00
|
2020-08-27 01:40:02 +02:00
LL | foo(1);
LL | foo(());
|
2018-01-18 23:02:18 +01:00
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:33:5
2018-01-18 23:02:18 +01:00
|
2019-08-26 19:35:25 +02:00
LL | / foo({
2018-12-27 16:57:55 +01:00
LL | | foo(1);
LL | | foo(2);
LL | | });
2019-08-26 19:35:25 +02:00
| |______^
|
2020-02-17 18:12:01 +01:00
help: remove the semicolon from the last statement in the block
|
LL | foo(2)
|
2020-08-21 00:07:56 +02:00
help: or move the expression in front of the call and replace it with the unit literal `()`
2019-08-26 19:35:25 +02:00
|
LL | {
LL | foo(1);
LL | foo(2);
2020-08-27 01:40:02 +02:00
LL | };
LL | foo(());
2018-01-18 23:02:18 +01:00
|
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:38:5
2018-01-18 23:02:18 +01:00
|
2019-08-26 19:35:25 +02:00
LL | / b.bar({
2018-12-27 16:57:55 +01:00
LL | | 1;
LL | | });
2019-08-26 19:35:25 +02:00
| |______^
|
2020-02-17 18:12:01 +01:00
help: remove the semicolon from the last statement in the block
|
LL | 1
|
2020-08-21 00:07:56 +02:00
help: or move the expression in front of the call and replace it with the unit literal `()`
2019-10-26 21:53:42 +02:00
|
2019-08-26 19:35:25 +02:00
LL | {
LL | 1;
2020-08-27 01:40:02 +02:00
LL | };
LL | b.bar(());
2019-08-26 19:35:25 +02:00
|
2018-01-18 23:02:18 +01:00
2020-02-17 18:12:01 +01:00
error: passing unit values to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:41:5
2019-08-26 19:35:25 +02:00
|
LL | taking_multiple_units(foo(0), foo(1));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-08-21 00:07:56 +02:00
help: move the expressions in front of the call and replace them with the unit literal `()`
2019-08-26 19:35:25 +02:00
|
2020-08-27 01:40:02 +02:00
LL | foo(0);
LL | foo(1);
LL | taking_multiple_units((), ());
|
2020-02-17 18:12:01 +01:00
error: passing unit values to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:42:5
2020-02-17 18:12:01 +01:00
|
LL | / taking_multiple_units(foo(0), {
LL | | foo(1);
LL | | foo(2);
LL | | });
| |______^
|
help: remove the semicolon from the last statement in the block
|
LL | foo(2)
|
2020-08-21 00:07:56 +02:00
help: or move the expressions in front of the call and replace them with the unit literal `()`
2020-02-17 18:12:01 +01:00
|
2020-08-27 01:40:02 +02:00
LL | foo(0);
LL | {
2020-02-17 18:12:01 +01:00
LL | foo(1);
LL | foo(2);
2020-08-27 01:40:02 +02:00
LL | };
LL | taking_multiple_units((), ());
2019-08-26 19:35:25 +02:00
|
2020-02-17 18:12:01 +01:00
error: passing unit values to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:46:5
2020-02-17 18:12:01 +01:00
|
LL | / taking_multiple_units(
LL | | {
LL | | foo(0);
LL | | foo(1);
... |
LL | | },
LL | | );
| |_____^
|
help: remove the semicolon from the last statement in the block
|
LL | foo(1)
|
help: remove the semicolon from the last statement in the block
|
LL | foo(3)
|
2020-08-21 00:07:56 +02:00
help: or move the expressions in front of the call and replace them with the unit literal `()`
2020-02-17 18:12:01 +01:00
|
LL | {
2020-08-27 01:40:02 +02:00
LL | foo(0);
LL | foo(1);
LL | };
LL | {
LL | foo(2);
2020-02-17 18:12:01 +01:00
...
2020-08-21 00:07:56 +02:00
2019-08-26 19:35:25 +02:00
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:57:13
2019-08-26 19:35:25 +02:00
|
2020-08-21 00:07:56 +02:00
LL | None.or(Some(foo(2)));
| ^^^^^^^^^^^^
|
help: move the expression in front of the call and replace it with the unit literal `()`
|
2020-08-27 01:40:02 +02:00
LL | None.or({
LL | foo(2);
LL | Some(())
LL | });
|
2020-08-21 00:07:56 +02:00
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:60:5
2020-08-21 00:07:56 +02:00
|
LL | foo(foo(()))
2019-08-26 19:35:25 +02:00
| ^^^^^^^^^^^^
|
2020-08-21 00:07:56 +02:00
help: move the expression in front of the call and replace it with the unit literal `()`
|
2020-08-27 01:40:02 +02:00
LL | foo(());
LL | foo(())
2020-08-21 00:07:56 +02:00
|
error: passing a unit value to a function
2020-08-27 01:40:02 +02:00
--> $DIR/unit_arg.rs:93:5
2020-08-21 00:07:56 +02:00
|
LL | Some(foo(1))
| ^^^^^^^^^^^^
2019-08-26 19:35:25 +02:00
|
2020-08-21 00:07:56 +02:00
help: move the expression in front of the call and replace it with the unit literal `()`
2020-02-17 18:12:01 +01:00
|
2020-08-27 01:40:02 +02:00
LL | foo(1);
LL | Some(())
2019-08-26 19:35:25 +02:00
|
2020-08-27 01:40:02 +02:00
error: aborting due to 10 previous errors
2018-01-18 23:02:18 +01:00