about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/functions_maxlines.stderr
blob: 9b0e7550cc314b774f400ffc095ef77921800430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: This function has a large number of lines.
  --> $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