rust/tests/ui/block-result/issue-22645.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
877 B
Plaintext
Raw Normal View History

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