about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/functions_maxlines.stderr
blob: 4c3faf45c4722e42a845115c459abb50429229b3 (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 (104/100)
  --> tests/ui/functions_maxlines.rs:60:1
   |
LL | pub async unsafe extern "Rust" fn bad_lines() -> () {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::too-many-lines` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::too_many_lines)]`

error: this function has too many lines (104/100)
  --> tests/ui/functions_maxlines.rs:170:5
   |
LL |     pub async unsafe extern "Rust" fn bad_lines() -> () {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors