1 error: this function has too many lines (2/1)
4 LL | / fn too_many_lines() {
5 LL | | println!("This is bad.");
6 LL | | println!("This is bad.");
10 = note: `-D clippy::too-many-lines` implied by `-D warnings`
12 error: this function has too many lines (2/1)
15 LL | / fn comment_before_code() {
16 LL | | let _ = "test";
17 LL | | /* This comment extends to the front of
18 LL | | the code but this line should still count. */ let _ = 5;
22 error: aborting due to 2 previous errors