mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:15:59
|
|
|
|
|
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) ->
|
|
| ___________________________________________________________^
|
|
LL | | ()
|
|
| |__________^ help: remove the `-> ()`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/unused_unit.rs:9:9
|
|
|
|
|
LL | #![deny(clippy::unused_unit)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:25:19
|
|
|
|
|
LL | fn into(self) -> () {
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit expression
|
|
--> $DIR/unused_unit.rs:26:9
|
|
|
|
|
LL | ()
|
|
| ^^ help: remove the final `()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:30:18
|
|
|
|
|
LL | fn return_unit() -> () { () }
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit expression
|
|
--> $DIR/unused_unit.rs:30:26
|
|
|
|
|
LL | fn return_unit() -> () { () }
|
|
| ^^ help: remove the final `()`
|
|
|
|
error: unneeded `()`
|
|
--> $DIR/unused_unit.rs:37:14
|
|
|
|
|
LL | break();
|
|
| ^^ help: remove the `()`
|
|
|
|
error: unneeded `()`
|
|
--> $DIR/unused_unit.rs:39:11
|
|
|
|
|
LL | return();
|
|
| ^^ help: remove the `()`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|