mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
420 B
Text
16 lines
420 B
Text
error: this function has too many lines (102/100)
|
|
--> $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
|
|
|