]> git.lizzy.rs Git - rust.git/blob - src/test/ui/exclusive-range/exclusive_range_pattern_syntax_collision2.stderr
88d45f16ff6c9bb357391c0704d7ca636a610129
[rust.git] / src / test / ui / exclusive-range / exclusive_range_pattern_syntax_collision2.stderr
1 error: `X..` range patterns are not supported
2   --> $DIR/exclusive_range_pattern_syntax_collision2.rs:5:13
3    |
4 LL |         [_, 99..] => {},
5    |             ^^^^ help: try using the maximum value for the type: `99..MAX`
6
7 error[E0527]: pattern requires 2 elements but array has 3
8   --> $DIR/exclusive_range_pattern_syntax_collision2.rs:5:9
9    |
10 LL |         [_, 99..] => {},
11    |         ^^^^^^^^^ expected 3 elements
12
13 error[E0308]: mismatched types
14   --> $DIR/exclusive_range_pattern_syntax_collision2.rs:5:13
15    |
16 LL |     match [5..4, 99..105, 43..44] {
17    |           ----------------------- this expression has type `std::ops::Range<{integer}>`
18 LL |         [_, 99..] => {},
19    |             ^^ expected struct `std::ops::Range`, found integer
20    |
21    = note: expected struct `std::ops::Range<{integer}>`
22                 found type `{integer}`
23
24 error: aborting due to 3 previous errors
25
26 Some errors have detailed explanations: E0308, E0527.
27 For more information about an error, try `rustc --explain E0308`.