rust/src/test/ui/block-result/issue-22645.stderr

27 lines
842 B
Plaintext
Raw Normal View History

2017-06-23 19:43:35 -05:00
error[E0277]: the trait bound `{integer}: Scalar` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/issue-22645.rs:15:5
2017-06-23 19:43:35 -05:00
|
2018-02-22 18:42:32 -06:00
LL | b + 3 //~ ERROR E0277
2017-06-23 19:43:35 -05:00
| ^ 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
2018-12-25 09:56:47 -06:00
--> $DIR/issue-22645.rs:15:3
2017-06-23 19:43:35 -05:00
|
2018-02-22 18:42:32 -06:00
LL | fn main() {
2017-08-09 11:57:28 -05:00
| - expected `()` because of default return type
2018-02-24 17:01:39 -06:00
LL | let b = Bob + 3.5;
2018-02-22 18:42:32 -06:00
LL | b + 3 //~ ERROR E0277
2017-06-23 19:43:35 -05:00
| ^^^^^ expected (), found struct `Bob`
|
= note: expected type `()`
found type `Bob`
error: aborting due to 2 previous errors
2017-06-23 19:43:35 -05:00
2018-03-03 08:59:40 -06:00
Some errors occurred: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.