]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/type_repetition_in_bounds.stderr
Rollup merge of #84221 - ABouttefeux:generic-arg-elision, r=estebank
[rust.git] / src / tools / clippy / tests / ui / type_repetition_in_bounds.stderr
1 error: this type has already been used as a bound predicate
2   --> $DIR/type_repetition_in_bounds.rs:8:5
3    |
4 LL |     T: Clone,
5    |     ^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/type_repetition_in_bounds.rs:1:9
9    |
10 LL | #![deny(clippy::type_repetition_in_bounds)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = help: consider combining the bounds: `T: Copy + Clone`
13
14 error: this type has already been used as a bound predicate
15   --> $DIR/type_repetition_in_bounds.rs:25:5
16    |
17 LL |     Self: Copy + Default + Ord,
18    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
19    |
20    = help: consider combining the bounds: `Self: Clone + Copy + Default + Ord`
21
22 error: aborting due to 2 previous errors
23