mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
104 lines
2.8 KiB
Text
104 lines
2.8 KiB
Text
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:18:29
|
|
|
|
|
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) -> ()
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused_unit.rs:12:9
|
|
|
|
|
LL | #![deny(clippy::unused_unit)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:19:19
|
|
|
|
|
LL | where G: Fn() -> () {
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:18:59
|
|
|
|
|
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) -> ()
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:20:27
|
|
|
|
|
LL | let _y: &dyn Fn() -> () = &f;
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:27:19
|
|
|
|
|
LL | fn into(self) -> () {
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit expression
|
|
--> $DIR/unused_unit.rs:28:9
|
|
|
|
|
LL | ()
|
|
| ^^ help: remove the final `()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:33:30
|
|
|
|
|
LL | fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:35:20
|
|
|
|
|
LL | G: FnMut() -> (),
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:36:17
|
|
|
|
|
LL | H: Fn() -> ();
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:40:30
|
|
|
|
|
LL | fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:42:20
|
|
|
|
|
LL | G: FnMut() -> (),
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:43:17
|
|
|
|
|
LL | H: Fn() -> () {}
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit return type
|
|
--> $DIR/unused_unit.rs:46:18
|
|
|
|
|
LL | fn return_unit() -> () { () }
|
|
| ^^^^^ help: remove the `-> ()`
|
|
|
|
error: unneeded unit expression
|
|
--> $DIR/unused_unit.rs:46:26
|
|
|
|
|
LL | fn return_unit() -> () { () }
|
|
| ^^ help: remove the final `()`
|
|
|
|
error: unneeded `()`
|
|
--> $DIR/unused_unit.rs:56:14
|
|
|
|
|
LL | break();
|
|
| ^^ help: remove the `()`
|
|
|
|
error: unneeded `()`
|
|
--> $DIR/unused_unit.rs:58:11
|
|
|
|
|
LL | return();
|
|
| ^^ help: remove the `()`
|
|
|
|
error: aborting due to 16 previous errors
|
|
|