rust/tests/ui/unused_unit.stderr

53 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-09-28 01:10:20 +08:00
error: unneeded unit return type
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:18:59
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) ->
2018-09-28 01:10:20 +08:00
| ___________________________________________________________^
2018-12-27 23:57:55 +08:00
LL | | ()
2018-09-28 01:10:20 +08:00
| |__________^ help: remove the `-> ()`
|
note: lint level defined here
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:12:9
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | #![deny(clippy::unused_unit)]
2018-09-28 01:10:20 +08:00
| ^^^^^^^^^^^^^^^^^^^
error: unneeded unit return type
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:28:19
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | fn into(self) -> () {
2018-09-28 01:10:20 +08:00
| ^^^^^ help: remove the `-> ()`
error: unneeded unit expression
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:29:9
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | ()
2018-09-28 01:10:20 +08:00
| ^^ help: remove the final `()`
error: unneeded unit return type
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:33:18
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | fn return_unit() -> () { () }
2018-09-28 01:10:20 +08:00
| ^^^^^ help: remove the `-> ()`
error: unneeded unit expression
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:33:26
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | fn return_unit() -> () { () }
2018-09-28 01:10:20 +08:00
| ^^ help: remove the final `()`
error: unneeded `()`
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:42:14
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | break();
2018-09-28 01:10:20 +08:00
| ^^ help: remove the `()`
error: unneeded `()`
2019-03-07 14:21:41 +08:00
--> $DIR/unused_unit.rs:44:11
2018-09-28 01:10:20 +08:00
|
2018-12-27 23:57:55 +08:00
LL | return();
2018-09-28 01:10:20 +08:00
| ^^ help: remove the `()`
error: aborting due to 7 previous errors