summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-11803.stderr
blob: b8289048a8b90c752b130cadb62e28f0b870f6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: `impl Trait` used as a function parameter
  --> $DIR/ice-11803.rs:5:54
   |
LL | pub fn g<T: IntoIterator<Item = impl Iterator<Item = impl Clone>>>() {
   |                                                      ^^^^^^^^^^
   |
   = note: `-D clippy::impl-trait-in-params` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::impl_trait_in_params)]`
help: add a type parameter
   |
LL | pub fn g<T: IntoIterator<Item = impl Iterator<Item = impl Clone>>, { /* Generic name */ }: Clone>() {
   |                                                                  +++++++++++++++++++++++++++++++

error: `impl Trait` used as a function parameter
  --> $DIR/ice-11803.rs:5:33
   |
LL | pub fn g<T: IntoIterator<Item = impl Iterator<Item = impl Clone>>>() {
   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: add a type parameter
   |
LL | pub fn g<T: IntoIterator<Item = impl Iterator<Item = impl Clone>>, { /* Generic name */ }: Iterator<Item = impl Clone>>() {
   |                                                                  +++++++++++++++++++++++++++++++++++++++++++++++++++++

error: aborting due to 2 previous errors