rust/tests/ui/trait_duplication_in_bounds.stderr

63 lines
2.4 KiB
Plaintext
Raw Normal View History

2022-07-13 06:25:19 -05:00
error: these bounds contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:7:15
|
2022-07-13 06:25:19 -05:00
LL | fn bad_foo<T: Clone + Clone + Clone + Copy, U: Clone + Copy>(arg0: T, argo1: U) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone + Copy`
|
note: the lint level is defined here
2022-07-13 06:25:19 -05:00
--> $DIR/trait_duplication_in_bounds.rs:2:9
|
LL | #![deny(clippy::trait_duplication_in_bounds)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: these where clauses contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:13:8
|
2022-07-13 06:25:19 -05:00
LL | T: Clone + Clone + Clone + Copy,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone + Copy`
error: these bounds contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:41:26
|
2022-07-13 06:25:19 -05:00
LL | trait BadSelfTraitBound: Clone + Clone + Clone {
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone`
error: these where clauses contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:48:15
|
2022-07-13 06:25:19 -05:00
LL | Self: Clone + Clone + Clone;
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone`
error: these bounds contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:62:24
|
2022-07-13 06:25:19 -05:00
LL | trait BadTraitBound<T: Clone + Clone + Clone + Copy, U: Clone + Copy> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone + Copy`
error: these where clauses contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:69:12
|
2022-07-13 06:25:19 -05:00
LL | T: Clone + Clone + Clone + Copy,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Clone + Copy`
error: these bounds contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:102:19
|
2022-07-13 06:25:19 -05:00
LL | fn bad_generic<T: GenericTrait<u64> + GenericTrait<u32> + GenericTrait<u64>>(arg0: T) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `GenericTrait<u64> + GenericTrait<u32>`
error: these bounds contain repeated elements
2023-04-30 07:45:45 -05:00
--> $DIR/trait_duplication_in_bounds.rs:110:22
|
2022-07-13 06:25:19 -05:00
LL | fn qualified_path<T: std::clone::Clone + Clone + foo::Clone>(arg0: T) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::clone::Clone + foo::Clone`
2023-04-30 07:45:45 -05:00
error: this trait bound is already specified in trait declaration
2023-04-30 08:34:46 -05:00
--> $DIR/trait_duplication_in_bounds.rs:118:33
2023-04-30 07:45:45 -05:00
|
LL | fn bad_trait_object(arg0: &(dyn Any + Send + Send)) {
2023-04-30 08:34:46 -05:00
| ^^^^^^^^^^^^^^^^^ help: try: `Any + Send`
2023-04-30 07:45:45 -05:00
error: aborting due to 9 previous errors