6399d16cfd
They are disallowed because they have different precedence than expressions. I assume parenthesis in pattern will be soon stabilized and thus write that as suggestion directly.
15 lines
512 B
Plaintext
15 lines
512 B
Plaintext
error: the range pattern here has ambiguous interpretation
|
|
--> $DIR/range-inclusive-pattern-precedence.rs:23:10
|
|
|
|
|
LL | &10..=15 => {}
|
|
| ^^^^^^^ help: add parentheses to clarify the precedence: `(10 ..=15)`
|
|
|
|
error: the range pattern here has ambiguous interpretation
|
|
--> $DIR/range-inclusive-pattern-precedence.rs:32:13
|
|
|
|
|
LL | box 10..=15 => {}
|
|
| ^^^^^^^ help: add parentheses to clarify the precedence: `(10 ..=15)`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|