2017-06-24 00:43:35 +00:00
|
|
|
error[E0277]: the trait bound `{integer}: Scalar` is not satisfied
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-22645.rs:15:5
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | b + 3
|
2017-06-24 00:43:35 +00:00
|
|
|
| ^ the trait `Scalar` is not implemented for `{integer}`
|
|
|
|
|
|
2021-12-13 20:56:40 +00:00
|
|
|
= help: the trait `Scalar` is implemented for `f64`
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `Bob` to implement `Add<{integer}>`
|
2021-03-30 20:37:30 +00:00
|
|
|
--> $DIR/issue-22645.rs:8:19
|
|
|
|
|
|
|
|
|
LL | impl<RHS: Scalar> Add <RHS> for Bob {
|
2023-01-11 03:21:11 +00:00
|
|
|
| ------ ^^^^^^^^^ ^^^
|
|
|
|
| |
|
|
|
|
| unsatisfied trait bound introduced here
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-22645.rs:15:3
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn main() {
|
2017-08-09 16:57:28 +00:00
|
|
|
| - expected `()` because of default return type
|
2018-02-24 23:01:39 +00:00
|
|
|
LL | let b = Bob + 3.5;
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | b + 3
|
2019-11-15 17:37:01 +00:00
|
|
|
| ^^^^^ expected `()`, found struct `Bob`
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2017-07-02 13:09:09 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0308.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|