summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/type_complexity/type_complexity.stderr
blob: 8ca637f7222510a18d072be5da74c24d7cd28651 (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 previous error