summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/functions_maxlines.stderr
blob: 1d6ddad79ff2d07b5ab84d809cc083701edf046c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: this function has too many lines (102/100)
  --> $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