rust-clippy/tests/ui/functions_maxlines.stderr

18 lines
436 B
Text
Raw Normal View History

error: this function has too many lines (102/100)
2019-01-15 03:32:12 +00:00
--> $DIR/functions_maxlines.rs:58:1
|
LL | / fn bad_lines() {
LL | |
LL | |
LL | | println!("Dont get confused by braces: {{}}");
... |
LL | | println!("This is bad.");
LL | | }
| |_^
|
= note: `-D clippy::too-many-lines` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::too_many_lines)]`
error: aborting due to previous error