34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
|
error: pattern on wrong side of `@`
|
||
|
--> $DIR/intersection-patterns.rs:13:9
|
||
|
|
|
||
|
LL | Some(x) @ y => {}
|
||
|
| -------^^^-
|
||
|
| | |
|
||
|
| | binding on the right, should be to the left
|
||
|
| pattern on the left, should be to the right
|
||
|
| help: switch the order: `y@Some(x)`
|
||
|
|
||
|
error: left-hand side of `@` must be a binding pattern
|
||
|
--> $DIR/intersection-patterns.rs:23:9
|
||
|
|
|
||
|
LL | Some(x) @ Some(y) => {}
|
||
|
| -------^^^-------
|
||
|
| | |
|
||
|
| | also a pattern
|
||
|
| interpreted as a pattern, not a binding
|
||
|
|
|
||
|
= note: bindings are `x`, `mut x`, `ref x`, and `ref mut x`
|
||
|
|
||
|
error: pattern on wrong side of `@`
|
||
|
--> $DIR/intersection-patterns.rs:32:9
|
||
|
|
|
||
|
LL | 1 ..= 5 @ e => {}
|
||
|
| -------^^^-
|
||
|
| | |
|
||
|
| | binding on the right, should be to the left
|
||
|
| pattern on the left, should be to the right
|
||
|
| help: switch the order: `e@1 ..=5`
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|