]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/binops.stderr
Rollup merge of #42211 - aidanhs:aphs-llvm-clone-hacks, r=Mark-Simulacrum
[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:5
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:5
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:5
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:5
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::PartialEq<std::string::String>` is not satisfied
34   --> $DIR/binops.rs:16:5
35    |
36 16 |     5 < String::new();
37    |     ^^^^^^^^^^^^^^^^^ can't compare `{integer}` with `std::string::String`
38    |
39    = help: the trait `std::cmp::PartialEq<std::string::String>` is not implemented for `{integer}`
40
41 error[E0277]: the trait bound `{integer}: std::cmp::PartialOrd<std::string::String>` is not satisfied
42   --> $DIR/binops.rs:16:5
43    |
44 16 |     5 < String::new();
45    |     ^^^^^^^^^^^^^^^^^ can't compare `{integer}` with `std::string::String`
46    |
47    = help: the trait `std::cmp::PartialOrd<std::string::String>` is not implemented for `{integer}`
48
49 error[E0277]: the trait bound `{integer}: std::cmp::PartialEq<std::result::Result<{integer}, _>>` is not satisfied
50   --> $DIR/binops.rs:17:5
51    |
52 17 |     6 == Ok(1);
53    |     ^^^^^^^^^^ can't compare `{integer}` with `std::result::Result<{integer}, _>`
54    |
55    = help: the trait `std::cmp::PartialEq<std::result::Result<{integer}, _>>` is not implemented for `{integer}`
56
57 error: aborting due to previous error(s)
58