2020-09-05 03:12:16 +00:00
|
|
|
error: this function has too many lines (2/1)
|
2021-10-23 07:42:52 +00:00
|
|
|
--> $DIR/test.rs:18:1
|
2019-01-13 21:26:20 +00:00
|
|
|
|
|
|
|
|
LL | / fn too_many_lines() {
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::too-many-lines` implied by `-D warnings`
|
|
|
|
|
2021-08-05 13:38:57 +00:00
|
|
|
error: this function has too many lines (4/1)
|
2021-10-23 07:42:52 +00:00
|
|
|
--> $DIR/test.rs:24:1
|
2021-08-05 13:38:57 +00:00
|
|
|
|
|
|
|
|
LL | / async fn async_too_many_lines() {
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: this function has too many lines (4/1)
|
2021-10-23 07:42:52 +00:00
|
|
|
--> $DIR/test.rs:30:1
|
2021-08-05 13:38:57 +00:00
|
|
|
|
|
|
|
|
LL | / fn closure_too_many_lines() {
|
|
|
|
LL | | let _ = {
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | };
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2020-09-05 03:12:16 +00:00
|
|
|
error: this function has too many lines (2/1)
|
2021-10-23 07:42:52 +00:00
|
|
|
--> $DIR/test.rs:52:1
|
2019-01-13 21:26:20 +00:00
|
|
|
|
|
|
|
|
LL | / fn comment_before_code() {
|
|
|
|
LL | | let _ = "test";
|
|
|
|
LL | | /* This comment extends to the front of
|
2019-04-04 09:15:30 +00:00
|
|
|
LL | | the code but this line should still count. */ let _ = 5;
|
2019-01-13 21:26:20 +00:00
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2021-08-05 13:38:57 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2019-01-13 21:26:20 +00:00
|
|
|
|