2017-06-24 00:43:35 +00:00
|
|
|
error[E0277]: the trait bound `{integer}: Scalar` is not satisfied
|
|
|
|
--> $DIR/issue-22645.rs:25:5
|
|
|
|
|
|
|
|
|
25 | b + 3 //~ ERROR E0277
|
|
|
|
| ^ the trait `Scalar` is not implemented for `{integer}`
|
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<f64 as Scalar>
|
|
|
|
= note: required because of the requirements on the impl of `std::ops::Add<{integer}>` for `Bob`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-22645.rs:25:3
|
|
|
|
|
|
2017-07-26 05:01:31 +00:00
|
|
|
23 | fn main() {
|
2017-08-09 16:57:28 +00:00
|
|
|
| - expected `()` because of default return type
|
2017-07-26 05:01:31 +00:00
|
|
|
24 | let b = Bob + 3.5;
|
2017-06-24 00:43:35 +00:00
|
|
|
25 | b + 3 //~ ERROR E0277
|
|
|
|
| ^^^^^ expected (), found struct `Bob`
|
|
|
|
|
|
|
|
|
= note: expected type `()`
|
|
|
|
found type `Bob`
|
|
|
|
|
2017-07-02 13:09:09 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2018-02-19 20:40:25 +00:00
|
|
|
You've got a few errors: E0277, E0308
|
|
|
|
If you want more information on an error, try using "rustc --explain E0277"
|