mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
0ae1a69330
Fixes #4364
16 lines
420 B
Text
16 lines
420 B
Text
error: This function has a large number of lines.
|
|
--> $DIR/functions_maxlines.rs:58:1
|
|
|
|
|
LL | / fn bad_lines() {
|
|
LL | | println!("Dont get confused by braces: {{}}");
|
|
LL | | println!("This is bad.");
|
|
LL | | println!("This is bad.");
|
|
... |
|
|
LL | | println!("This is bad.");
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::too-many-lines` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|