]> git.lizzy.rs Git - rust.git/blob - src/test/ui/shift-various-bad-types.stderr
Auto merge of #81507 - weiznich:add_diesel_to_cargo_test, r=Mark-Simulacrum
[rust.git] / src / test / ui / shift-various-bad-types.stderr
1 error[E0277]: no implementation for `{integer} >> char`
2   --> $DIR/shift-various-bad-types.rs:9:8
3    |
4 LL |     22 >> p.char;
5    |        ^^ no implementation for `{integer} >> char`
6    |
7    = help: the trait `Shr<char>` is not implemented for `{integer}`
8
9 error[E0277]: no implementation for `{integer} >> &str`
10   --> $DIR/shift-various-bad-types.rs:12:8
11    |
12 LL |     22 >> p.str;
13    |        ^^ no implementation for `{integer} >> &str`
14    |
15    = help: the trait `Shr<&str>` is not implemented for `{integer}`
16
17 error[E0277]: no implementation for `{integer} >> &Panolpy`
18   --> $DIR/shift-various-bad-types.rs:15:8
19    |
20 LL |     22 >> p;
21    |        ^^ no implementation for `{integer} >> &Panolpy`
22    |
23    = help: the trait `Shr<&Panolpy>` is not implemented for `{integer}`
24
25 error[E0308]: mismatched types
26   --> $DIR/shift-various-bad-types.rs:25:18
27    |
28 LL |     let _: i32 = 22_i64 >> 1_i32;
29    |            ---   ^^^^^^^^^^^^^^^ expected `i32`, found `i64`
30    |            |
31    |            expected due to this
32    |
33 help: you can convert an `i64` to an `i32` and panic if the converted value doesn't fit
34    |
35 LL |     let _: i32 = (22_i64 >> 1_i32).try_into().unwrap();
36    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
37
38 error: aborting due to 4 previous errors
39
40 Some errors have detailed explanations: E0277, E0308.
41 For more information about an error, try `rustc --explain E0277`.