summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/type_complexity/type_complexity.stderr
blob: df824400da82e06ca2e7d4b9fa53a3cc31fcb660 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: very complex type used. Consider factoring parts into `type` definitions
  --> $DIR/type_complexity.rs:4:10
   |
LL | fn f2(_: (u8, (u8, (u8, (u8, (u8, (u8, u8))))))) {}
   |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::type-complexity` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::type_complexity)]`

error: aborting due to 1 previous error