rust/tests/ui/functions_maxlines.stderr

17 lines
420 B
Plaintext
Raw Normal View History

2020-09-05 04:16:02 +02:00
error: this function has too many lines (102/100)
2019-01-15 04:32:12 +01:00
--> $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