]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/functions_maxlines.stderr
Rollup merge of #76150 - matklad:droporder, r=withoutboats
[rust.git] / src / tools / clippy / tests / ui / functions_maxlines.stderr
1 error: this function has too many lines (102/100)
2   --> $DIR/functions_maxlines.rs:58:1
3    |
4 LL | / fn bad_lines() {
5 LL | |     println!("Dont get confused by braces: {{}}");
6 LL | |     println!("This is bad.");
7 LL | |     println!("This is bad.");
8 ...  |
9 LL | |     println!("This is bad.");
10 LL | | }
11    | |_^
12    |
13    = note: `-D clippy::too-many-lines` implied by `-D warnings`
14
15 error: aborting due to previous error
16