]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/binops.stderr
report the total number of errors on compilation failure
[rust.git] / src / test / ui / mismatched_types / binops.stderr
1 error[E0277]: the trait bound `{integer}: std::ops::Add<std::option::Option<{integer}>>` is not satisfied
2   --> $DIR/binops.rs:12:7
3    |
4 12 |     1 + Some(1);
5    |       ^ no implementation for `{integer} + std::option::Option<{integer}>`
6    |
7    = help: the trait `std::ops::Add<std::option::Option<{integer}>>` is not implemented for `{integer}`
8
9 error[E0277]: the trait bound `usize: std::ops::Sub<std::option::Option<{integer}>>` is not satisfied
10   --> $DIR/binops.rs:13:16
11    |
12 13 |     2 as usize - Some(1);
13    |                ^ no implementation for `usize - std::option::Option<{integer}>`
14    |
15    = help: the trait `std::ops::Sub<std::option::Option<{integer}>>` is not implemented for `usize`
16
17 error[E0277]: the trait bound `{integer}: std::ops::Mul<()>` is not satisfied
18   --> $DIR/binops.rs:14:7
19    |
20 14 |     3 * ();
21    |       ^ no implementation for `{integer} * ()`
22    |
23    = help: the trait `std::ops::Mul<()>` is not implemented for `{integer}`
24
25 error[E0277]: the trait bound `{integer}: std::ops::Div<&str>` is not satisfied
26   --> $DIR/binops.rs:15:7
27    |
28 15 |     4 / "";
29    |       ^ no implementation for `{integer} / &str`
30    |
31    = help: the trait `std::ops::Div<&str>` is not implemented for `{integer}`
32
33 error[E0277]: the trait bound `{integer}: std::cmp::PartialOrd<std::string::String>` is not satisfied
34   --> $DIR/binops.rs:16:7
35    |
36 16 |     5 < String::new();
37    |       ^ can't compare `{integer}` with `std::string::String`
38    |
39    = help: the trait `std::cmp::PartialOrd<std::string::String>` is not implemented for `{integer}`
40
41 error[E0277]: the trait bound `{integer}: std::cmp::PartialEq<std::result::Result<{integer}, _>>` is not satisfied
42   --> $DIR/binops.rs:17:7
43    |
44 17 |     6 == Ok(1);
45    |       ^^ can't compare `{integer}` with `std::result::Result<{integer}, _>`
46    |
47    = help: the trait `std::cmp::PartialEq<std::result::Result<{integer}, _>>` is not implemented for `{integer}`
48
49 error: aborting due to 6 previous errors
50