]> git.lizzy.rs Git - rust.git/blob - src/test/ui/shift-various-bad-types.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[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:19:8
3    |
4 LL |     22 >> p.char;
5    |        ^^ no implementation for `{integer} >> char`
6    |
7    = help: the trait `std::ops::Shr<char>` is not implemented for `{integer}`
8
9 error[E0277]: no implementation for `{integer} >> &str`
10   --> $DIR/shift-various-bad-types.rs:22:8
11    |
12 LL |     22 >> p.str;
13    |        ^^ no implementation for `{integer} >> &str`
14    |
15    = help: the trait `std::ops::Shr<&str>` is not implemented for `{integer}`
16
17 error[E0277]: no implementation for `{integer} >> &Panolpy`
18   --> $DIR/shift-various-bad-types.rs:25:8
19    |
20 LL |     22 >> p;
21    |        ^^ no implementation for `{integer} >> &Panolpy`
22    |
23    = help: the trait `std::ops::Shr<&Panolpy>` is not implemented for `{integer}`
24
25 error[E0308]: mismatched types
26   --> $DIR/shift-various-bad-types.rs:35:18
27    |
28 LL |     let _: i32 = 22_i64 >> 1_i32;
29    |                  ^^^^^^^^^^^^^^^ expected i32, found i64
30
31 error: aborting due to 4 previous errors
32
33 Some errors occurred: E0277, E0308.
34 For more information about an error, try `rustc --explain E0277`.