2020-09-04 22:12:16 -05:00
|
|
|
error: this function has too many lines (2/1)
|
2021-08-05 08:38:57 -05:00
|
|
|
--> $DIR/test.rs:20:1
|
2019-01-13 15:26:20 -06: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 08:38:57 -05:00
|
|
|
error: this function has too many lines (4/1)
|
|
|
|
--> $DIR/test.rs:26:1
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
--> $DIR/test.rs:32:1
|
|
|
|
|
|
|
|
|
LL | / fn closure_too_many_lines() {
|
|
|
|
LL | | let _ = {
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | println!("This is bad.");
|
|
|
|
LL | | };
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2020-09-04 22:12:16 -05:00
|
|
|
error: this function has too many lines (2/1)
|
2021-08-05 08:38:57 -05:00
|
|
|
--> $DIR/test.rs:54:1
|
2019-01-13 15:26:20 -06:00
|
|
|
|
|
|
|
|
LL | / fn comment_before_code() {
|
|
|
|
LL | | let _ = "test";
|
|
|
|
LL | | /* This comment extends to the front of
|
2019-04-04 04:15:30 -05:00
|
|
|
LL | | the code but this line should still count. */ let _ = 5;
|
2019-01-13 15:26:20 -06:00
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2021-08-05 08:38:57 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2019-01-13 15:26:20 -06:00
|
|
|
|