]> git.lizzy.rs Git - rust.git/blob - tests/ui/pattern/issue-88074-pat-range-type-inference-err.stderr
Rollup merge of #106470 - ehuss:tidy-no-wasm, r=Mark-Simulacrum
[rust.git] / tests / ui / pattern / issue-88074-pat-range-type-inference-err.stderr
1 error[E0029]: only `char` and numeric types are allowed in range patterns
2   --> $DIR/issue-88074-pat-range-type-inference-err.rs:11:9
3    |
4 LL |         Zero::ZERO ..= Zero::ZERO => {},
5    |         ----------^^^^^----------
6    |         |              |
7    |         |              this is of type `String` but it should be `char` or numeric
8    |         this is of type `String` but it should be `char` or numeric
9
10 error[E0282]: type annotations needed
11   --> $DIR/issue-88074-pat-range-type-inference-err.rs:19:9
12    |
13 LL |         Zero::ZERO ..= Zero::ZERO => {},
14    |         ^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0029, E0282.
19 For more information about an error, try `rustc --explain E0029`.