2020-09-10 10:47:07 -05:00
|
|
|
error: this function has too many lines (102/100)
|
2019-01-14 21:32:12 -06:00
|
|
|
--> $DIR/functions_maxlines.rs:58:1
|
2019-01-13 16:53:56 -06:00
|
|
|
|
|
|
|
|
LL | / fn bad_lines() {
|
2019-09-02 23:25:54 -05:00
|
|
|
LL | | println!("Dont get confused by braces: {{}}");
|
2019-01-13 16:53:56 -06:00
|
|
|
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
|
|
|
|
|