mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
17 lines
399 B
Plaintext
17 lines
399 B
Plaintext
|
error: This function has a large number of lines.
|
||
|
--> $DIR/functions_maxlines.rs:59:1
|
||
|
|
|
||
|
LL | / fn bad_lines() {
|
||
|
LL | | println!("This is bad.");
|
||
|
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
|
||
|
|