rust/tests/ui/unused_unit.stderr

123 lines
3.2 KiB
Text
Raw Normal View History

2018-09-27 19:10:20 +02:00
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:19:28
2018-09-27 19:10:20 +02:00
|
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) -> ()
| ^^^^^^ help: remove the `-> ()`
2018-09-27 19:10:20 +02:00
|
2020-01-31 20:21:10 +01:00
note: the lint level is defined here
2019-03-07 07:21:41 +01:00
--> $DIR/unused_unit.rs:12:9
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | #![deny(clippy::unused_unit)]
2018-09-27 19:10:20 +02:00
| ^^^^^^^^^^^^^^^^^^^
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:20:18
|
LL | where G: Fn() -> () {
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:19:58
|
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) -> ()
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:21:26
|
LL | let _y: &dyn Fn() -> () = &f;
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:28:18
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | fn into(self) -> () {
| ^^^^^^ help: remove the `-> ()`
2018-09-27 19:10:20 +02:00
error: unneeded unit expression
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:29:9
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | ()
2018-09-27 19:10:20 +02:00
| ^^ help: remove the final `()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:34:29
|
LL | fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:36:19
|
LL | G: FnMut() -> (),
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:37:16
|
LL | H: Fn() -> ();
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:41:29
|
LL | fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:43:19
|
LL | G: FnMut() -> (),
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:44:16
|
LL | H: Fn() -> () {}
| ^^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:47:17
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | fn return_unit() -> () { () }
| ^^^^^^ help: remove the `-> ()`
2018-09-27 19:10:20 +02:00
error: unneeded unit expression
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:47:26
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | fn return_unit() -> () { () }
2018-09-27 19:10:20 +02:00
| ^^ help: remove the final `()`
error: unneeded `()`
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:57:14
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | break();
2018-09-27 19:10:20 +02:00
| ^^ help: remove the `()`
error: unneeded `()`
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:59:11
2018-09-27 19:10:20 +02:00
|
2018-12-27 16:57:55 +01:00
LL | return();
2018-09-27 19:10:20 +02:00
| ^^ help: remove the `()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:76:10
|
LL | fn test()->(){}
| ^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:79:11
|
LL | fn test2() ->(){}
| ^^^^^ help: remove the `-> ()`
error: unneeded unit return type
2020-12-19 15:49:42 +01:00
--> $DIR/unused_unit.rs:82:11
|
LL | fn test3()-> (){}
| ^^^^^ help: remove the `-> ()`
error: aborting due to 19 previous errors
2018-09-27 19:10:20 +02:00