2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the trait bound `dyn CompareToInts: CompareTo<i32>` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/traits-repeated-supertrait-ambig.rs:26:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | c.same_as(22)
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^ the trait `CompareTo<i32>` is not implemented for `dyn CompareToInts`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `C: CompareTo<i32>` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/traits-repeated-supertrait-ambig.rs:30:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-10-07 16:23:56 -05:00
|
|
|
LL | fn with_trait<C:CompareToInts>(c: &C) -> bool {
|
|
|
|
| -- help: consider further restricting this bound: `C: CompareTo<i32> +`
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | c.same_as(22)
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^ the trait `CompareTo<i32>` is not implemented for `C`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `dyn CompareToInts: CompareTo<i32>` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/traits-repeated-supertrait-ambig.rs:34:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn same_as(&self, t: T) -> bool;
|
|
|
|
| -------------------------------- required by `CompareTo::same_as`
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | CompareToInts::same_as(c, 22)
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ the trait `CompareTo<i32>` is not implemented for `dyn CompareToInts`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `C: CompareTo<i32>` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/traits-repeated-supertrait-ambig.rs:38:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn same_as(&self, t: T) -> bool;
|
|
|
|
| -------------------------------- required by `CompareTo::same_as`
|
|
|
|
...
|
2019-10-07 16:23:56 -05:00
|
|
|
LL | fn with_ufcs2<C:CompareToInts>(c: &C) -> bool {
|
|
|
|
| -- help: consider further restricting this bound: `C: CompareTo<i32> +`
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | CompareTo::same_as(c, 22)
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ the trait `CompareTo<i32>` is not implemented for `C`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `i64: CompareTo<i32>` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/traits-repeated-supertrait-ambig.rs:42:23
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | assert_eq!(22_i64.same_as(22), true);
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^ the trait `CompareTo<i32>` is not implemented for `i64`
|
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<i64 as CompareTo<i64>>
|
|
|
|
<i64 as CompareTo<u64>>
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|